From 5c891d8d2c206dfd2aa6daf59579eb2b6843dcc0 Mon Sep 17 00:00:00 2001
From: liding <756868258@qq.com>
Date: 星期三, 01 四月 2026 18:00:37 +0800
Subject: [PATCH] fix:1.采购/销售入库去掉审批 2.返工下载附件内容变更 3.生产/库存入库生产日期添加 4.仓库导入导出字段优化

---
 src/main/java/com/ruoyi/production/dto/ProductOrderDto.java |   54 ++++++++++++++++++++++++++++++++++++++++++------------
 1 files changed, 42 insertions(+), 12 deletions(-)

diff --git a/src/main/java/com/ruoyi/production/dto/ProductOrderDto.java b/src/main/java/com/ruoyi/production/dto/ProductOrderDto.java
index f9fdbbd..3a14d53 100644
--- a/src/main/java/com/ruoyi/production/dto/ProductOrderDto.java
+++ b/src/main/java/com/ruoyi/production/dto/ProductOrderDto.java
@@ -1,38 +1,68 @@
 package com.ruoyi.production.dto;
 
+import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import com.ruoyi.framework.aspectj.lang.annotation.Excel;
 import com.ruoyi.production.pojo.ProductOrder;
 import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
+import lombok.EqualsAndHashCode;
+import org.springframework.format.annotation.DateTimeFormat;
 
 import java.math.BigDecimal;
+import java.time.LocalDate;
 
+@EqualsAndHashCode(callSuper = true)
 @Data
+@ExcelIgnoreUnannotated
 public class ProductOrderDto extends ProductOrder {
 
     @ApiModelProperty(value = "閿�鍞悎鍚屽彿")
+    @Excel(name = "閿�鍞悎鍚屽彿")
     private String salesContractNo;
 
     @ApiModelProperty(value = "椤圭洰鍚�")
+    @Excel(name = "椤圭洰鍚�")
     private String projectName;
 
-    @ApiModelProperty(value = "瀹㈡埛鍚�")
+    @ApiModelProperty(value = "瀹㈡埛鍚嶇О")
+    @Excel(name = "瀹㈡埛鍚嶇О")
     private String customerName;
 
     @ApiModelProperty(value = "浜у搧鍚嶇О")
+    @Excel(name = "浜у搧鍚嶇О")
     private String productCategory;
 
     @ApiModelProperty(value = "瑙勬牸")
+    @Excel(name = "瑙勬牸")
     private String specificationModel;
-    @ApiModelProperty(value = "璁″垝鏁伴噺")
-    private Integer planQuantity;
-    @ApiModelProperty(value = "鏁伴噺")
-    private Integer Quantity;
-    @ApiModelProperty(value = "宸ュ崟鍙�")
-    private String workOrderNo;
-    @ApiModelProperty(value = "鏄惁鎶ュ伐")
-    private Integer reportWork;
-    @ApiModelProperty(value = "宸ュ崟鐘舵��")
-    private Integer status;
-    @ApiModelProperty(value = "璁㈠崟瀹屾垚搴�")
+
+    @Excel(name = "UID鐮�")
+    private String uidNo;
+
+    @ApiModelProperty(value = "宸ヨ壓璺嚎缂栧彿")
+    @Excel(name = "宸ヨ壓璺嚎缂栧彿")
+    private String processRouteCode;
+
+    @ApiModelProperty(value = "瀹屾垚杩涘害")
+    @Excel(name = "瀹屾垚杩涘害", suffix = "%")
     private BigDecimal completionStatus;
+
+    @ApiModelProperty(value = "BOM缂栧彿")
+    @Excel(name = "BOM缂栧彿")
+    private String bomNo;
+
+    @ApiModelProperty(value = "浜ゆ湡鍋忓樊")
+    private Integer deliveryDaysDiff;
+
+    @ApiModelProperty(value = "浜ゆ湡")
+    @JsonFormat(pattern = "yyyy-MM-dd")
+    @DateTimeFormat(pattern = "yyyy-MM-dd")
+    private LocalDate deliveryDate;
+
+    //鏄惁鍙戣揣(鍙拌处椤甸潰棰滆壊鎺у埗)
+    private Boolean isFh;
+
+    @ApiModelProperty(value = "BOM缂栧彿id")
+    private Long bomId;
 }

--
Gitblit v1.9.3