All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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[] serviceClass() default {}; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy