package com.vci.starter.web.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * 使用参照的注解 * @author weidy */ @Target({ ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) public @interface VciUseRefer { /** * 引用的业务类型 * @return */ String value(); /** * 显示文本的字段 * @return */ String showTextField() default ""; }