Commit 7ff6d8e1 authored by fangxinjiang's avatar fangxinjiang

公积金自动化配置-fxj

parent c8f1d565
......@@ -52,7 +52,7 @@ public class TAutoFundRuleInfo extends BaseEntity {
/**
* 项目配置ID
*/
@ExcelAttribute(name = "项目配置ID", isNotEmpty = true, errorInfo = "项目配置ID不能为空", maxLength = 32)
@ExcelAttribute(name = "项目配置ID", errorInfo = "项目配置ID不能为空", maxLength = 32)
@NotBlank(message = "项目配置ID不能为空")
@Length(max = 32, message = "项目配置ID不能超过32个字符")
@ExcelProperty("项目配置ID")
......@@ -102,7 +102,7 @@ public class TAutoFundRuleInfo extends BaseEntity {
/**
* 项目编码
*/
@ExcelAttribute(name = "项目编码", isNotEmpty = true, errorInfo = "项目编码不能为空", maxLength = 50)
@ExcelAttribute(name = "项目编码", errorInfo = "项目编码不能为空", maxLength = 50)
@NotBlank(message = "项目编码不能为空")
@Length(max = 50, message = "项目编码不能超过50个字符")
@ExcelProperty("项目编码")
......@@ -111,7 +111,7 @@ public class TAutoFundRuleInfo extends BaseEntity {
/**
* 项目ID
*/
@ExcelAttribute(name = "项目ID", isNotEmpty = true, errorInfo = "项目ID不能为空", maxLength = 50)
@ExcelAttribute(name = "项目ID", errorInfo = "项目ID不能为空", maxLength = 50)
@NotBlank(message = "项目ID不能为空")
@Length(max = 50, message = "项目ID不能超过50个字符")
@ExcelProperty("项目ID")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment