feat(项目管理产品需求重构): 完善产品中的需求规格功能开发

需规和用户需求标题长度最大调整为200

Signed-off-by: OTTO <731554297@qq.com>
This commit is contained in:
OTTO 2024-12-12 09:43:29 +08:00
parent f93f802671
commit e2a592a799
2 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ public class ProductReqSpecsChangeVo {
private Long id;
@ApiModelProperty(value = "标题")
@Size(max = 50, message = "长度需要小于50")
@Size(max = 200, message = "长度需要小于200")
private String title;
@ApiModelProperty(value = "正文")

View File

@ -31,7 +31,7 @@ public class ProductUserReqUpdateVo {
* 标题
*/
@ApiModelProperty(value = "标题")
@Size(max = 50, message = "长度需要小于50")
@Size(max = 200, message = "长度需要小于200")
private String title;
/**