Commit 76070b6c authored by huyuchen's avatar huyuchen

缴费库 代码修改

parent 9250bf59
...@@ -235,16 +235,16 @@ public class TPreDispatchInfo extends BaseEntity { ...@@ -235,16 +235,16 @@ public class TPreDispatchInfo extends BaseEntity {
* 备注说明1 * 备注说明1
*/ */
@Schema(description ="备注说明1") @Schema(description ="备注说明1")
@Length(max = 255, message = "备注说明1不能超过255个字符") @Length(max = 250, message = "备注说明1不能超过255个字符")
@ExcelAttribute(name = "备注说明1", maxLength = 255) @ExcelAttribute(name = "备注说明1", maxLength = 250)
private String remarkOne; private String remarkOne;
/** /**
* 备注说明2 * 备注说明2
*/ */
@Schema(description ="备注说明2") @Schema(description ="备注说明2")
@Length(max = 255, message = "备注说明2不能超过255个字符") @Length(max = 250, message = "备注说明2不能超过250个字符")
@ExcelAttribute(name = "备注说明2", maxLength = 255) @ExcelAttribute(name = "备注说明2", maxLength = 250)
private String remarkTwo; private String remarkTwo;
/** /**
...@@ -740,8 +740,8 @@ public class TPreDispatchInfo extends BaseEntity { ...@@ -740,8 +740,8 @@ public class TPreDispatchInfo extends BaseEntity {
* 备注 * 备注
*/ */
@Schema(description ="备注") @Schema(description ="备注")
@Length(max = 255, message = "备注不能超过255个字符") @Length(max = 250, message = "备注不能超过250个字符")
@ExcelAttribute(name = "备注", maxLength = 255) @ExcelAttribute(name = "备注", maxLength = 250)
private String remark; private String remark;
/** /**
......
...@@ -150,14 +150,14 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo { ...@@ -150,14 +150,14 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo {
/** /**
* 备注说明1 * 备注说明1
*/ */
@Length(max = 255, message = "备注说明1不能超过255个字符") @Length(max = 250, message = "备注说明1不能超过250个字符")
@ExcelAttribute(name = "备注说明1", maxLength = 255) @ExcelAttribute(name = "备注说明1", maxLength = 250)
private String remarkOne; private String remarkOne;
/** /**
* 备注说明2 * 备注说明2
*/ */
@Length(max = 255, message = "备注说明2不能超过255个字符") @Length(max = 250, message = "备注说明2不能超过250个字符")
@ExcelAttribute(name = "备注说明2", maxLength = 255) @ExcelAttribute(name = "备注说明2", maxLength = 250)
private String remarkTwo; private String remarkTwo;
/** /**
* 养老城市 * 养老城市
...@@ -587,8 +587,8 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo { ...@@ -587,8 +587,8 @@ public class TPreDispatchUpdateVo extends TPreDispatchInfo {
/** /**
* 备注 * 备注
*/ */
@ExcelAttribute(name = "备注", maxLength = 255) @ExcelAttribute(name = "备注", maxLength = 250)
@Length(max = 255, message = "备注不能超过255个字符") @Length(max = 250, message = "备注不能超过250个字符")
private String remark; private String remark;
/** /**
......
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