From 1ca5584d7e3200a9af65a099bd26d3593e2ba702 Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期四, 07 五月 2026 14:36:08 +0800
Subject: [PATCH] 迁移pro

---
 src/main/java/com/ruoyi/production/bean/dto/ProductionPlanImportDto.java |   81 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 81 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/production/bean/dto/ProductionPlanImportDto.java b/src/main/java/com/ruoyi/production/bean/dto/ProductionPlanImportDto.java
new file mode 100644
index 0000000..5dd5160
--- /dev/null
+++ b/src/main/java/com/ruoyi/production/bean/dto/ProductionPlanImportDto.java
@@ -0,0 +1,81 @@
+package com.ruoyi.production.bean.dto;
+
+import com.ruoyi.framework.aspectj.lang.annotation.Excel;
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+
+import java.math.BigDecimal;
+import java.time.LocalDate;
+
+/**
+ * <br>
+ * 閿�鍞敓浜ч渶姹� Excel瀵煎叆瀵煎嚭DTO
+ * </br>
+ *
+ * @author deslrey
+ * @version 1.0
+ * @since 2026/03/11 11:28
+ */
+@Data
+@Schema(name = "閿�鍞敓浜ч渶姹� Excel瀵煎叆瀵煎嚭DTO")
+public class ProductionPlanImportDto {
+
+    @Schema(description = "涓荤敓浜ц鍒掑彿")
+    @Excel(name = "涓荤敓浜ц鍒掑彿")
+    private String mpsNo;
+
+    @Schema(description = "闇�姹傛棩鏈�")
+    @Excel(name = "闇�姹傛棩鏈�")
+    private LocalDate requiredDate;
+
+    @Schema(description = "澶囨敞")
+    @Excel(name = "澶囨敞")
+    private String remark;
+
+    @Schema(description = "闇�姹傛暟閲�")
+    @Excel(name = "闇�姹傛暟閲�")
+    private BigDecimal qtyRequired;
+
+    @Schema(description = "鏉ユ簮 閿�鍞�/鍐呴儴")
+    @Excel(name = "鏉ユ簮 閿�鍞�/鍐呴儴")
+    private String source;
+
+    @Schema(description = "鎵胯鏃ユ湡")
+    @Excel(name = "鎵胯鏃ユ湡")
+    private LocalDate promisedDeliveryDate;
+
+    @Schema(description = "浜у搧鍚嶇О")
+    @Excel(name = "浜у搧鍚嶇О")
+    private String productName;
+
+    @Schema(description = "瑙勬牸鍨嬪彿")
+    @Excel(name = "瑙勬牸鍨嬪彿")
+    private String model;
+
+    @Schema(description = "鍗曚綅")
+    @Excel(name = "鍗曚綅")
+    private String unit;
+
+
+    /**
+     * 鍒涘缓浜�
+     */
+    @Schema(description = "鍒涘缓浜�")
+    @Excel(name = "鍒涘缓浜�", type = Excel.Type.EXPORT)
+    private String creatorName;
+
+    /**
+     * 淇敼浜�
+     */
+    @Schema(description = "淇敼浜�")
+    @Excel(name = "淇敼浜�", type = Excel.Type.EXPORT)
+    private String modifierName;
+
+
+    /**
+     * 宸蹭笅鍙戞暟閲�
+     */
+    @Schema(description = "宸蹭笅鍙戞暟閲�")
+    @Excel(name = "宸蹭笅鍙戞暟閲�", type = Excel.Type.EXPORT)
+    private BigDecimal assignedQuantity;
+}

--
Gitblit v1.9.3