dengzedong
2024-12-25 3ddbb6f6f8ecb625bf81b750a788e7d75309334c
提交 | 用户 | 时间
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 }