Commit 50212ace authored by huyuchen's avatar huyuchen

失败原因配置

parent b895beab
......@@ -65,16 +65,16 @@ public class TSocialfundHouseRes {
/**
* 社保户
*/
@ExcelAttribute(name = "社保户", maxLength = 32)
@Length(max = 32, message = "社保户不能超过32个字符")
@ExcelAttribute(name = "社保户", maxLength = 50)
@Length(max = 50, message = "社保户不能超过50个字符")
@ExcelProperty("社保户")
@Schema(description = "社保户")
private String socialHousehold;
/**
* 公积金户
*/
@ExcelAttribute(name = "公积金户", maxLength = 32)
@Length(max = 32, message = "公积金户不能超过32个字符")
@ExcelAttribute(name = "公积金户", maxLength = 50)
@Length(max = 50, message = "公积金户不能超过50个字符")
@ExcelProperty("公积金户")
@Schema(description = "公积金户")
private String fundHousehold;
......
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