潘志宝
2024-12-23 d6464955dc20cb527f7be02ac8631c1effb1768a
提交 | 用户 | 时间
a6de49 1 package com.iailab.framework.common.annotation;
H 2
3 import java.lang.annotation.ElementType;
4 import java.lang.annotation.Retention;
5 import java.lang.annotation.RetentionPolicy;
6 import java.lang.annotation.Target;
7
8 /**
9  * 字典注解
10  *
11  * @author PanZhibao
12  * @Description
13  * @createTime 2022年05月20日 17:36:00
14  */
15 @Target(ElementType.FIELD)
16 @Retention(RetentionPolicy.RUNTIME)
17 public @interface Dict {
18
19     /**
20      * 数据code
21      *
22      * @return
23      */
24     String dicCode();
25
26     /**
27      * 数据itemValue
28      *
29      * @return
30      */
31     String itemValue();
32 }