com.kangaroohy.plugin.excel.annotation.ExcelSelector Maven / Gradle / Ivy
package com.kangaroohy.plugin.excel.annotation;
import com.kangaroohy.plugin.excel.service.ExcelSelectorService;
import java.lang.annotation.*;
/**
* 类 ExcelSelector 功能描述:
*
* @author hy
* @version 0.0.1
* @date 2023/7/23 22:53
*/
@Documented
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ExcelSelector {
/**
* 固定数据
*/
String[] value() default {};
/**
* 字典key
*/
String dictKeyValue() default "";
/**
* 服务类
*/
Class extends ExcelSelectorService>[] serviceClass() default {};
}