From 40b55a632aa5384579f7a1d62915bb7095f29770 Mon Sep 17 00:00:00 2001
From: guoyujie <guoyujie@ng.com>
Date: 星期二, 13 五月 2025 08:48:57 +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/ScheduleProductionScheduleDTO.java | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/dto/pp/ScheduleProductionScheduleDTO.java b/north-glass-erp/src/main/java/com/example/erp/dto/pp/ScheduleProductionScheduleDTO.java
new file mode 100644
index 0000000..4355288
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/dto/pp/ScheduleProductionScheduleDTO.java
@@ -0,0 +1,30 @@
+package com.example.erp.dto.pp;
+
+import cn.hutool.core.date.DateTime;
+import com.alibaba.excel.annotation.ExcelProperty;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.Data;
+
+import java.time.LocalDateTime;
+
+@Data
+public class ScheduleProductionScheduleDTO {
+ @ExcelProperty("閿�鍞崟鍙�")
+ private String orderId;
+ @ExcelProperty("椤圭洰鍚嶇О")
+ private String project;
+ @ExcelProperty("宸ュ簭")
+ private String processes;
+ @ExcelProperty("鎺掍骇鏁伴噺")
+ private String schedulingQuantity;
+ @ExcelProperty("澶囨敞")
+ private String notes;
+ @ExcelProperty("寮�濮嬫椂闂�")
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
+ private LocalDateTime scheduledStartTime;
+ @ExcelProperty("缁撴潫鏃堕棿")
+ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
+ private LocalDateTime planEndTime;
+
+
+}
--
Gitblit v1.8.0