Commit 1a735e05 authored by hongguangwu's avatar hongguangwu

卡号50长度

parent 3ed31d95
...@@ -96,8 +96,8 @@ public class TSalaryAccount { ...@@ -96,8 +96,8 @@ public class TSalaryAccount {
/** /**
* 银行卡号 * 银行卡号
*/ */
@ExcelAttribute(name = "银行卡号", maxLength = 30) @ExcelAttribute(name = "银行卡号", maxLength = 50)
@Length(max = 30, message = "银行卡号不能超过30个字符") @Length(max = 50, message = "银行卡号不能超过50个字符")
@ExcelProperty("银行卡号") @ExcelProperty("银行卡号")
private String bankNo; private String bankNo;
/** /**
......
...@@ -62,8 +62,8 @@ public class TSalaryAccountVo implements Serializable { ...@@ -62,8 +62,8 @@ public class TSalaryAccountVo implements Serializable {
/** /**
* 银行卡号000 * 银行卡号000
*/ */
@Length(max = 30, message = "银行卡号不能超过30个字符") @Length(max = 50, message = "银行卡号不能超过50个字符")
@ExcelAttribute(name = "银行卡号", maxLength = 30) @ExcelAttribute(name = "银行卡号", maxLength = 50)
private String bankNo; private String bankNo;
/** /**
* 开户行总行 * 开户行总行
......
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