1.代码提交

This commit is contained in:
wr
2023-12-01 08:48:50 +08:00
parent 71ed4ffe12
commit 1129cee5b3
12 changed files with 600 additions and 37 deletions

View File

@@ -0,0 +1,16 @@
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 "导入有未填入的字段";
}