From 5e3a8bcac219d13667853eab7f293b85f5b6f2db Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期四, 29 二月 2024 10:50:10 +0800
Subject: [PATCH] 右键菜单以及拖选

---
 north-glass-erp/src/main/java/com/example/erp/entity/pp/ProductionScheduling.java |   36 ++++++++++++++++++++++++++++++++++++
 1 files changed, 36 insertions(+), 0 deletions(-)

diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/pp/ProductionScheduling.java b/north-glass-erp/src/main/java/com/example/erp/entity/pp/ProductionScheduling.java
new file mode 100644
index 0000000..2a3d7f6
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/pp/ProductionScheduling.java
@@ -0,0 +1,36 @@
+package com.example.erp.entity.pp;
+
+import com.example.erp.entity.sd.Order;
+import com.example.erp.entity.sd.OrderDetail;
+import lombok.Data;
+
+@Data
+public class ProductionScheduling {
+    //鑷id
+    private Integer id;
+    //鎺掍骇缂栧彿
+    private String schedulingId;
+    //璁㈠崟鍙�
+    private String orderId;
+    //璁㈠崟搴忓彿
+    private String orderNumber;
+    //鎺掍骇宸ュ簭
+    private String processes;
+    //鎺掍骇鏁伴噺
+    private Integer schedulingQuantity;
+    //璁″垝寮�濮嬫椂闂�
+    private Integer scheduledStartTime;
+    //璁″垝缁撴潫鏃堕棿
+    private Integer planEndTime;
+    //瀹℃牳鐘舵��
+    private String reviewStatus;
+    //澶囨敞
+    private String notes;
+    //鍒涘缓鏃堕棿
+    private String createTime;
+
+    //澶栭敭璁㈠崟琛�
+    private Order order;
+    //澶栭敭璁㈠崟鏄庣粏琛�
+    private OrderDetail orderDetail;
+}

--
Gitblit v1.8.0