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