From 9bc5ae4254e0b4a644741c9c579ca8797b7e369d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E9=B9=8F=E9=A3=9E?= Date: Fri, 26 Jun 2026 10:44:44 +0800 Subject: [PATCH] =?UTF-8?q?feat(ExternalReturnInspectionApplyQO):=20?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=AD=97=E6=AE=B5=E6=B3=A8=E9=87=8A=E4=BB=A5?= =?UTF-8?q?=E5=AE=8C=E5=96=84=E5=A4=96=E9=83=A8=E9=80=80=E8=B4=A7=E6=A3=80?= =?UTF-8?q?=E9=AA=8C=E7=94=B3=E8=AF=B7=E6=9F=A5=E8=AF=A2=E5=AF=B9=E8=B1=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 为requestNo字段添加请求单号注释 - 为materialNo字段添加物料编号注释 - 为inspectionQty字段添加检验数量注释 - 为returnType字段添加退料来源详细说明注释 --- .../pojo/qo/ExternalReturnInspectionApplyQO.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nflg-wms-common/src/main/java/com/nflg/wms/common/pojo/qo/ExternalReturnInspectionApplyQO.java b/nflg-wms-common/src/main/java/com/nflg/wms/common/pojo/qo/ExternalReturnInspectionApplyQO.java index b69c1d98..0437502b 100644 --- a/nflg-wms-common/src/main/java/com/nflg/wms/common/pojo/qo/ExternalReturnInspectionApplyQO.java +++ b/nflg-wms-common/src/main/java/com/nflg/wms/common/pojo/qo/ExternalReturnInspectionApplyQO.java @@ -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; }