xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
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
package com.dl.common.annotation;
 
import java.lang.annotation.*;
 
/**
 * 枚举格式化
 *
 * @author Liang
 */
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface ExcelEnumFormat {
 
    /**
     * 字典枚举类型
     */
    Class<? extends Enum<?>> enumClass();
 
    /**
     * 字典枚举类中对应的code属性名称,默认为code
     */
    String codeField() default "code";
 
    /**
     * 字典枚举类中对应的text属性名称,默认为text
     */
    String textField() default "text";
 
}