top.yumbo.excel.annotation.CheckValues Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel-import-export Show documentation
Show all versions of excel-import-export Show documentation
excel import and export utils.
package top.yumbo.excel.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author jinhua
* @date 2021/5/21 15:53
* excel主逻辑注解,用于标注主逻辑字段
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public @interface CheckValues {
/**
* follow字段的值为value时必填
*/
String[] values() default {};
/**
* 消息
*/
String message() default "";
}