From 71a4444510d9067654705f0c5803d5f12a21a092 Mon Sep 17 00:00:00 2001
From: guoyujie <guoyujie@ng.com>
Date: 星期二, 11 十一月 2025 09:17:34 +0800
Subject: [PATCH] 添加流程卡进度接口信息
---
north-glass-erp/src/main/java/com/example/erp/dto/pp/DamageReportDTO.java | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 57 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..eae38a9
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/dto/pp/DamageReportDTO.java
@@ -0,0 +1,57 @@
+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 thisProcess;
+ @ExcelProperty("鍒涘缓浜�")
+ private String creator;
+ @ExcelProperty("鎶ュ伐缂栧彿")
+ private String reportingWorkId;
+}
--
Gitblit v1.8.0