eight
2024-09-19 a940b56e9781e2b4e56dbe05a896dba33a6905c6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package cn.lihu.jh.framework.excel.core.annotations;
 
import java.lang.annotation.*;
 
/**
 * 字典格式化
 *
 * 实现将字典数据的值,格式化成字典数据的标签
 */
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface DictFormat {
 
    /**
     * 例如说,SysDictTypeConstants、InfDictTypeConstants
     *
     * @return 字典类型
     */
    String value();
 
}