dengzedong
2024-12-25 3ddbb6f6f8ecb625bf81b750a788e7d75309334c
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();
 
}