lyh
2025-06-25 d15e1f37f3b0518c1e5a181c5f9c70d34e9dd6a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.jeecg.common.system.annotation;
 
import java.lang.annotation.*;
 
/**
 * 将枚举类转化成字典数据
 * @Author taoYan
 * @Date 2022/7/8 10:34
 **/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface EnumDict {
 
    /**
     * 作为字典数据的唯一编码
     */
    String value() default "";
}