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/DamageReportDTO.java |   60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 60 insertions(+), 0 deletions(-)

diff --git a/north-glass-erp/src/main/java/com/example/erp/dto/pp/DamageReportDTO.java b/north-glass-erp/src/main/java/com/example/erp/dto/pp/DamageReportDTO.java
new file mode 100644
index 0000000..56d3cee
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/dto/pp/DamageReportDTO.java
@@ -0,0 +1,60 @@
+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 DamageReportDTO {
+    @ExcelProperty("閿�鍞崟鍙�")
+    private String orderId;
+    @ExcelProperty("椤圭洰鍚嶇О")
+    private String project;
+    @ExcelProperty("鎵规")
+    private String batch;
+    @ExcelProperty("娴佺▼鍗″彿")
+    private String processId;
+    @ExcelProperty("璁㈠崟搴忓彿")
+    private Integer orderNumber;
+    @ExcelProperty("灏忕墖椤哄簭")
+    private Integer technologyNumber;
+    @ExcelProperty("鎶ュ伐鏃堕棿")
+    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+    private LocalDateTime reportingWorkTime;
+    @ExcelProperty("璐d换宸ュ簭")
+    private String responsibleProcess;
+    @ExcelProperty("璐d换鐝粍")
+    private String responsibleTeam;
+    @ExcelProperty("璐d换璁惧")
+    private String responsibleEquipment;
+    @ExcelProperty("娆$牬绫诲瀷")
+    private String breakageType;
+    @ExcelProperty("娆$牬鍘熷洜")
+    private String breakageReason;
+    @ExcelProperty("娆$牬鏁伴噺")
+    private Integer breakageQuantity;
+    @ExcelProperty("娆$牬闈㈢Н")
+    private Double area;
+    @ExcelProperty("璐d换浜哄憳")
+    private String personnel;
+    @ExcelProperty("鍗曠墖鍚嶇О")
+    private String glassChild;
+    @ExcelProperty("缂栧彿")
+    private String glassNumber;
+    @ExcelProperty("瀹�")
+    private Double childWidth;
+    @ExcelProperty("楂�")
+    private Double childHeight;
+    @ExcelProperty("鍘氬害")
+    private String thickness;
+    @ExcelProperty("鎶ュ伐宸ュ簭")
+    private String thisProcess;
+    @ExcelProperty("鍒涘缓浜�")
+    private String creator;
+    @ExcelProperty("鎶ュ伐缂栧彿")
+    private String reportingWorkId;
+
+}

--
Gitblit v1.8.0