From d613f1080234e13d12f2bad22650733b4477aa84 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期二, 09 十二月 2025 16:52:40 +0800
Subject: [PATCH] 在制品报表添加厚度和相关功能
---
north-glass-erp/src/main/java/com/example/erp/dto/pp/CrossProcessBreakingDTO.java | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 55 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/dto/pp/CrossProcessBreakingDTO.java b/north-glass-erp/src/main/java/com/example/erp/dto/pp/CrossProcessBreakingDTO.java
new file mode 100644
index 0000000..08d2b45
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/dto/pp/CrossProcessBreakingDTO.java
@@ -0,0 +1,55 @@
+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;
+
+/**
+ * @author SNG-016
+ */
+@Data
+public class CrossProcessBreakingDTO {
+ @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 responsiblePersonnel;
+ @ExcelProperty("鎶ュ伐宸ュ簭")
+ private String thisProcess;
+ @ExcelProperty("娆$牬绫诲瀷")
+ private String breakageType;
+ @ExcelProperty("娆$牬鍘熷洜")
+ private String breakageReason;
+ @ExcelProperty("瀹�")
+ private Double childWidth;
+ @ExcelProperty("楂�")
+ private Double childHeight;
+ @ExcelProperty("鍘氬害")
+ private String thickness;
+ @ExcelProperty("娆$牬鏁伴噺")
+ private Integer breakageQuantity;
+ @ExcelProperty("娆$牬闈㈢Н")
+ private Double area;
+ @ExcelProperty("椤圭洰鍚嶇О")
+ private String project;
+ @ExcelProperty("閿�鍞崟鍙�")
+ private String orderId;
+ @ExcelProperty("娴佺▼鍗″彿")
+ private String processId;
+ @ExcelProperty("鍗曠墖鍚嶇О")
+ private String glassChild;
+ @ExcelProperty("缂栧彿")
+ private String code;
+ @ExcelProperty("鍒涘缓浜�")
+ private String creator;
+ @ExcelProperty("鎶ュ伐缂栧彿")
+ private String reportingWorkId;
+
+}
--
Gitblit v1.8.0