feat(dto): 添加区域报价编码字段注释
- 在 BaseAreaEditDTO 中新增 areaQuoteCode 字段 - 添加字段非空校验注解@NotBlank - 补充字段的JavaDoc注释,说明其含义为区域报价编码
This commit is contained in:
parent
6acd9f8a52
commit
35bd3b4767
|
|
@ -25,6 +25,9 @@ public class BaseAreaEditDTO {
|
||||||
@NotNull(message = "类别不能为空")
|
@NotNull(message = "类别不能为空")
|
||||||
private Long categoryId;
|
private Long categoryId;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 区域报价编码
|
||||||
|
*/
|
||||||
@NotBlank(message = "区域报价编码不能为空")
|
@NotBlank(message = "区域报价编码不能为空")
|
||||||
private String areaQuoteCode;
|
private String areaQuoteCode;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue