From 1750abd11320f8d09ffe1580b7467dba87c86c89 Mon Sep 17 00:00:00 2001
From: guoyujie <guoyujie@ng.com>
Date: 星期三, 10 十二月 2025 14:40:25 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/ERP_override
---
north-glass-erp/src/main/java/com/example/erp/dto/pp/exportReplenishDTO.java | 68 ++++++++++++++++++++++++++++++++++
1 files changed, 68 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/dto/pp/exportReplenishDTO.java b/north-glass-erp/src/main/java/com/example/erp/dto/pp/exportReplenishDTO.java
new file mode 100644
index 0000000..145d0c3
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/dto/pp/exportReplenishDTO.java
@@ -0,0 +1,68 @@
+package com.example.erp.dto.pp;
+
+import com.alibaba.excel.annotation.ExcelProperty;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.Data;
+
+import java.time.LocalDate;
+import java.time.LocalDateTime;
+
+@Data
+public class exportReplenishDTO {
+ @ExcelProperty("閿�鍞崟鍙�")
+ private String orderId;
+ @ExcelProperty("琛ョ墖鍗曞彿")
+ private String patchId;
+ @ExcelProperty("鎶ュ伐缂栧彿")
+ private String reportingWorkId;
+ @ExcelProperty("娴佺▼鍗″彿")
+ private String processId;
+ @ExcelProperty("椤圭洰鍚嶇О")
+ private String project;
+ @ExcelProperty("鎵规")
+ private String batch;
+ @ExcelProperty("瀹℃牳浜�")
+ private String reviewer;
+ @ExcelProperty("缂栧彿")
+ private String glassNumber;
+ @ExcelProperty("璁㈠崟搴忓彿")
+ private Integer orderSort;
+ @ExcelProperty("浜у搧鍚嶇О")
+ private String productName;
+ @ExcelProperty("灞傚彿")
+ private Integer technologyNumber;
+ @ExcelProperty("鐗囨爣璁�")
+ private String glassAddress;
+ @ExcelProperty("鍗曠墖鍚嶇О")
+ private String glassChild;
+ @ExcelProperty("鏁伴噺")
+ private Integer patchNum;
+ @ExcelProperty("瀹�")
+ private Double width;
+ @ExcelProperty("楂�")
+ private Double height;
+ @ExcelProperty("褰㈢姸")
+ private String shape;
+ @ExcelProperty("鎶ュ伐宸ュ簭")
+ private String patchProcesses;
+ @ExcelProperty("琛ョ墖鍘熷洜")
+ private String patchReason;
+ @ExcelProperty("琛ョ墖绫诲瀷")
+ private String patchType;
+ @ExcelProperty("璐d换淇℃伅")
+ private String responsiblePersonnel;
+ @ExcelProperty("璐d换璁惧")
+ private String responsibleEquipment;
+ @ExcelProperty("璐d换鐝粍")
+ private String responsibleTeam;
+ @ExcelProperty("闈㈢Н")
+ private String patchArea;
+ @ExcelProperty("鍒跺崟鏃堕棿")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+ private LocalDateTime createTime;
+ @ExcelProperty("瀹℃牳鏃堕棿")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+ private LocalDateTime updateTime;
+
+
+}
--
Gitblit v1.8.0