Commit 183ff93c9308f2aef028faec47d15d46af6c3b50
1 parent
b78c90fa
fix ZR-199 调整备注限制
Showing
1 changed file
with
2 additions
and
2 deletions
etrade-shop/src/main/java/com/diligrp/etrade/shop/domain/request/ProductCo.java
... | ... | @@ -71,9 +71,9 @@ public class ProductCo implements Serializable { |
71 | 71 | private Long shopId; |
72 | 72 | |
73 | 73 | /** |
74 | - * 备注(最大140个字符) | |
74 | + * 备注(最大5500个字符) | |
75 | 75 | */ |
76 | - @Length(max = 140, message = "备注最多只能包含140个字符") | |
76 | + @Length(max = 5500, message = "备注最多只能包含5500个字符") | |
77 | 77 | private String remark; |
78 | 78 | |
79 | 79 | /** | ... | ... |