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