From d5bb894f9be2e0a3b62d475b60b44f2ab138528c Mon Sep 17 00:00:00 2001 From: guoyujie <guoyujie@ng.com> Date: 星期四, 12 六月 2025 16:48:35 +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 | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 50 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..7e298b4 --- /dev/null +++ b/north-glass-erp/src/main/java/com/example/erp/dto/pp/DamageReportDTO.java @@ -0,0 +1,50 @@ +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 processId; + @ExcelProperty("璁㈠崟搴忓彿") + private String orderNumber; + @ExcelProperty("灏忕墖椤哄簭") + private String 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 String childWidth; + @ExcelProperty("楂�") + private String childHeight; + +} -- Gitblit v1.8.0