From 1458532478eedbd82947e6ee8515f881d4a4912a Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期六, 18 七月 2026 16:14:23 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev_business' into dev_business
---
yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/controller/admin/pro/mps/vo/MesProMpsSaveReqVO.java | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 58 insertions(+), 0 deletions(-)
diff --git a/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/controller/admin/pro/mps/vo/MesProMpsSaveReqVO.java b/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/controller/admin/pro/mps/vo/MesProMpsSaveReqVO.java
new file mode 100644
index 0000000..71c6a75
--- /dev/null
+++ b/yudao-module-mes/src/main/java/cn/iocoder/yudao/module/mes/controller/admin/pro/mps/vo/MesProMpsSaveReqVO.java
@@ -0,0 +1,58 @@
+package cn.iocoder.yudao.module.mes.controller.admin.pro.mps.vo;
+
+import io.swagger.v3.oas.annotations.media.Schema;
+import jakarta.validation.constraints.NotEmpty;
+import jakarta.validation.constraints.NotNull;
+import lombok.Data;
+
+import java.math.BigDecimal;
+import java.time.LocalDateTime;
+
+@Schema(description = "绠$悊鍚庡彴 - MES 鐢熶骇涓昏鍒掓柊澧�/淇敼 Request VO")
+@Data
+public class MesProMpsSaveReqVO {
+
+ @Schema(description = "缂栧彿", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
+ private Long id;
+
+ @Schema(description = "MPS 缂栫爜锛堟柊澧炴椂涓嶅~鑷姩鐢熸垚锛�", example = "MPS-001")
+ private String code;
+
+ // ========== 鏉ユ簮淇℃伅 ==========
+
+ @Schema(description = "閿�鍞鍗旾D", example = "100")
+ private Long saleOrderId;
+
+ @Schema(description = "閿�鍞鍗曞彿", example = "SO-001")
+ private String saleOrderNo;
+
+ @Schema(description = "閿�鍞鍗曟槑缁咺D", example = "200")
+ private Long saleOrderItemId;
+
+ // ========== 浜у搧淇℃伅 ==========
+
+ @Schema(description = "浜у搧缂栧彿", requiredMode = Schema.RequiredMode.REQUIRED, example = "100")
+ @NotNull(message = "浜у搧涓嶈兘涓虹┖")
+ private Long productId;
+
+ @Schema(description = "璁″垝鐢熶骇鏁伴噺", requiredMode = Schema.RequiredMode.REQUIRED, example = "100.00")
+ @NotNull(message = "璁″垝鐢熶骇鏁伴噺涓嶈兘涓虹┖")
+ private BigDecimal quantity;
+
+ @Schema(description = "璁¢噺鍗曚綅ID", example = "1")
+ private Long unitMeasureId;
+
+ // ========== 瀹㈡埛淇℃伅 ==========
+
+ @Schema(description = "瀹㈡埛缂栧彿", example = "300")
+ private Long clientId;
+
+ // ========== 鏃堕棿淇℃伅 ==========
+
+ @Schema(description = "闇�姹傛棩鏈�")
+ private LocalDateTime requestDate;
+
+ @Schema(description = "澶囨敞", example = "澶囨敞")
+ private String remark;
+
+}
\ No newline at end of file
--
Gitblit v1.9.3