feat(dto): 添加区域报价编码字段注释

- 在 BaseAreaEditDTO 中新增 areaQuoteCode 字段
- 添加字段非空校验注解@NotBlank
- 补充字段的JavaDoc注释,说明其含义为区域报价编码
This commit is contained in:
曹鹏飞 2026-05-13 11:44:00 +08:00
parent 6acd9f8a52
commit 35bd3b4767
1 changed files with 3 additions and 0 deletions

View File

@ -25,6 +25,9 @@ public class BaseAreaEditDTO {
@NotNull(message = "类别不能为空")
private Long categoryId;
/**
* 区域报价编码
*/
@NotBlank(message = "区域报价编码不能为空")
private String areaQuoteCode;
}