From 2ad00b6623beac3b504105beba9cb56143f7db13 Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期一, 22 一月 2024 08:29:45 +0800
Subject: [PATCH] 实体类相关文件提交
---
north-glass-erp/src/main/java/com/example/erp/entity/pp/FlowCard.java | 61 ++++++++++++++++++++++++++++++
1 files changed, 61 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/pp/FlowCard.java b/north-glass-erp/src/main/java/com/example/erp/entity/pp/FlowCard.java
new file mode 100644
index 0000000..aed3c54
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/pp/FlowCard.java
@@ -0,0 +1,61 @@
+package com.example.erp.entity.pp;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+
+import java.time.LocalDate;
+
+public class FlowCard {
+ @TableId(type = IdType.AUTO)
+ //鑷id
+ private Integer id;
+ //閿�鍞崟鍙�
+ private String orderId;
+ //鐢熶骇璁㈠崟鍙�
+ private String productionId;
+ //娴佺▼鍗″彿
+ private String processId;
+ //搴忓彿
+ private Integer orderNumber;
+ //宸ヨ壓纭搴忓彿
+ private Integer technologyNumber;
+ //宸蹭紭鍖栨暟閲�
+ private Integer optimizeQuantity;
+ //鎺掔増鐘舵��
+ private Integer layoutStatus;
+ //琛ョ墖鏁伴噺
+ private Integer numberPatches;
+ //搴撳瓨鏁伴噺
+ private Integer inventoryQuantity;
+ //宸插叆鏁伴噺
+ private Integer receivedQuantity;
+ //琛ョ墖缂栧彿
+ private String patchId;
+ //宸ョ▼鍗犵敤
+ private Integer engineeringOccupancy;
+ //搴撳瓨鏁伴噺
+ private Integer inventoryNumber;
+ //鍏ュ簱鏃堕棿
+ private LocalDate storageTime;
+ //鐢熶骇缁堟鐘舵��
+ private Integer terminationStatus;
+ //鎵撳嵃鐘舵��
+ private Integer printStatus;
+ //澶囩敤閿�
+ private String alternateKey;
+ //鍒嗘灦鍛�
+ private String founder;
+ //鍒嗘灦鏃堕棿
+ private LocalDate splitFrameTime;
+ //寤虹珛鏃堕棿
+ private LocalDate createTime;
+ //淇敼鏃堕棿
+ private LocalDate updateTime;
+
+ //澶栭敭璁㈠崟琛�
+// private Order order;
+// //澶栭敭璁㈠崟鏄庣粏琛�
+// private OrderDetail orderDetail;
+// //澶栭敭璁㈠崟宸ヨ壓瀹℃牳琛�
+// private orderGlassDetail orderGlassDetail;
+}
--
Gitblit v1.8.0