From 19b9d7966ba986d788463af7784e274263648aa7 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期三, 23 十月 2024 08:09:46 +0800
Subject: [PATCH] 上传价格计算查询功能与删除功能
---
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