From b069101e1bf347ceab11e33d73b2fbb7f37d4686 Mon Sep 17 00:00:00 2001
From: zss <zss@example.com>
Date: 星期六, 25 四月 2026 17:15:53 +0800
Subject: [PATCH] feat(production): 生产订单的工艺路线和参数的增删改逻辑

---
 src/main/java/com/ruoyi/production/bean/dto/ProductionPlanDto.java |   42 +++++++++++-------------------------------
 1 files changed, 11 insertions(+), 31 deletions(-)

diff --git a/src/main/java/com/ruoyi/production/bean/dto/ProductionPlanDto.java b/src/main/java/com/ruoyi/production/bean/dto/ProductionPlanDto.java
index 3f6ef76..60ab542 100644
--- a/src/main/java/com/ruoyi/production/bean/dto/ProductionPlanDto.java
+++ b/src/main/java/com/ruoyi/production/bean/dto/ProductionPlanDto.java
@@ -16,30 +16,10 @@
 @Data
 public class ProductionPlanDto extends ProductionPlan {
 
-    /**
-     * 鐗╂枡缂栫爜
-     */
-    @Schema(description = "鐗╂枡缂栫爜")
-    @Excel(name = "鐗╂枡缂栫爜")
-    private String materialCode;
-
-    /**
-     * 浜у搧鍚嶇О
-     */
     @Schema(description = "浜у搧鍚嶇О")
     @Excel(name = "浜у搧鍚嶇О")
     private String productName;
 
-    /**
-     * 瀹㈡埛鍚嶇О
-     */
-    @Schema(description = "瀹㈡埛鍚嶇О")
-    @Excel(name = "瀹㈡埛鍚嶇О")
-    private String customerName;
-
-    /**
-     * 浜у搧瑙勬牸
-     */
     @Schema(description = "浜у搧瑙勬牸")
     @Excel(name = "浜у搧瑙勬牸")
     private String model;
@@ -59,17 +39,17 @@
     @DateTimeFormat(pattern = "yyyy-MM-dd")
     private LocalDate planCompleteTime;
 
-    /**
-     * 鍏宠仈鐗╂枡淇℃伅琛�
-     */
-    @Schema(description = "鍏宠仈鐗╂枡淇℃伅琛↖D")
-    private Long productMaterialId;
+    @Schema(description = "浜у搧ID")
+    private Long productId;
 
-    /**
-     * 寮哄害
-     */
-    @Schema(description = "寮哄害")
-    @Excel(name = "寮哄害")
-    private String strength;
+    @Schema(description = "绛涢�夊紑濮嬫棩鏈�")
+    @JsonFormat(pattern = "yyyy-MM-dd")
+    @DateTimeFormat(pattern = "yyyy-MM-dd")
+    private LocalDate requiredDateStart;
+
+    @Schema(description = "绛涢�夌粨鏉熸棩鏈�")
+    @JsonFormat(pattern = "yyyy-MM-dd")
+    @DateTimeFormat(pattern = "yyyy-MM-dd")
+    private LocalDate requiredDateEnd;
 
 }

--
Gitblit v1.9.3