123456789101112131415161718192021222324252627282930313233343536373839404142 |
- package org.jeecg.common.aspect.annotation;
- import java.lang.annotation.ElementType;
- import java.lang.annotation.Retention;
- import java.lang.annotation.RetentionPolicy;
- import java.lang.annotation.Target;
- /**
- * 类描述: 字典注解
- * 作 者: dangzhenghui
- * 日 期: 2019年03月17日-下午9:37:16
- */
- @Target(ElementType.FIELD)
- @Retention(RetentionPolicy.RUNTIME)
- public @interface Dict {
- /**
- * 方法描述: 数据code
- * 作 者: dangzhenghui
- * 日 期: 2019年03月17日-下午9:37:16
- *
- * @return 返回类型: String
- */
- String dicCode();
- /**
- * 方法描述: 数据Text
- * 作 者: dangzhenghui
- * 日 期: 2019年03月17日-下午9:37:16
- *
- * @return 返回类型: String
- */
- String dicText() default "";
- /**
- * 方法描述: 数据字典表
- * 作 者: dangzhenghui
- * 日 期: 2019年03月17日-下午9:37:16
- *
- * @return 返回类型: String
- */
- String dictTable() default "";
- }
|