办学质量监测教学评价系统
ageer
2024-04-01 b3ddb4ccf84e9ed46b9e3fc19eb22765a053f2f4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.xmzs.common.excel.annotation;
 
import com.xmzs.common.core.utils.StringUtils;
 
import java.lang.annotation.*;
 
/**
 * 字典格式化
 *
 * @author Lion Li
 */
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface ExcelDictFormat {
 
    /**
     * 如果是字典类型,请设置字典的type值 (如: sys_user_sex)
     */
    String dictType() default "";
 
    /**
     * 读取内容转表达式 (如: 0=男,1=女,2=未知)
     */
    String readConverterExp() default "";
 
    /**
     * 分隔符,读取字符串组内容
     */
    String separator() default StringUtils.SEPARATOR;
 
}