17 lines
426 B
Java
17 lines
426 B
Java
package com.njcn.jbsyncdata.util;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
* <p>Excel导入必填校验注解</p>
|
|
*
|
|
*/
|
|
@Target({ ElementType.FIELD, ElementType.TYPE })
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
public @interface ExcelValid {
|
|
String message() default "导入有未填入的字段";
|
|
}
|