feat(ExternalReturnInspectionApplyQO): 添加字段注释以完善外部退货检验申请查询对象
- 为requestNo字段添加请求单号注释 - 为materialNo字段添加物料编号注释 - 为inspectionQty字段添加检验数量注释 - 为returnType字段添加退料来源详细说明注释
This commit is contained in:
parent
49d1053421
commit
9bc5ae4254
|
|
@ -10,16 +10,28 @@ import lombok.experimental.Accessors;
|
|||
@Accessors(chain = true)
|
||||
public class ExternalReturnInspectionApplyQO {
|
||||
|
||||
/**
|
||||
* 请求单号
|
||||
*/
|
||||
@NotBlank(message = "请求单号不能为空")
|
||||
private String requestNo;
|
||||
|
||||
/**
|
||||
* 物料编号
|
||||
*/
|
||||
@NotBlank(message = "物料编号不能为空")
|
||||
private String materialNo;
|
||||
|
||||
/**
|
||||
* 检验数量
|
||||
*/
|
||||
@NotNull(message = "检验数量不能为空")
|
||||
@Min(value = 1, message = "检验数量必须大于0")
|
||||
private Integer inspectionQty;
|
||||
|
||||
/**
|
||||
* 退料来源:0为生产退料,1为成本中心退料,2为返修退料
|
||||
*/
|
||||
@NotNull(message = "退料来源不能为空")
|
||||
private Short returnType;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue