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