Jay
2024-11-01 03e8aca3ad6201c0d74e00d4c8d7367cdaaa54f9
提交 | 用户 | 时间
e7c126 1 package com.iailab.framework.excel.core.annotations;
H 2
3 import java.lang.annotation.*;
4
5 /**
6  * 给 Excel 列添加下拉选择数据
7  *
8  * 其中 {@link #dictType()} 和 {@link #functionName()} 二选一
9  *
10  * @author HUIHUI
11  */
12 @Target({ElementType.FIELD})
13 @Retention(RetentionPolicy.RUNTIME)
14 @Inherited
15 public @interface ExcelColumnSelect {
16
17     /**
18      * @return 字典类型
19      */
20     String dictType() default "";
21
22     /**
23      * @return 获取下拉数据源的方法名称
24      */
25     String functionName() default "";
26
27 }