From 5df5dba2a321098fd0fc7e18b71549f5c2312049 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期二, 27 八月 2024 17:19:13 +0800
Subject: [PATCH] Merge branch 'master' of http://bore.pub:10439/r/ERP_override

---
 north-glass-erp/src/main/java/com/example/erp/entity/pp/FlowCard.java |   94 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 94 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..3f69894
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/pp/FlowCard.java
@@ -0,0 +1,94 @@
+package com.example.erp.entity.pp;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.example.erp.entity.sd.Order;
+import com.example.erp.entity.sd.OrderDetail;
+import com.example.erp.entity.sd.OrderGlassDetail;
+import com.example.erp.entity.sd.Product;
+import lombok.Data;
+
+import java.time.LocalDate;
+@Data
+public class FlowCard {
+    @TableId(type = IdType.AUTO)
+    //鑷id
+    private Integer id;
+    //閿�鍞崟鍙�
+    private String orderId;
+    //鐢熶骇璁㈠崟鍙�
+    private String productionId;
+    //娴佺▼鍗″彿
+    private String processId;
+    //钀芥灦椤哄簭
+    private Integer landingSequence;
+    //搴忓彿
+    private Integer orderNumber;
+    //宸ヨ壓纭搴忓彿
+    private Integer technologyNumber;
+    //鍒嗘灦鏁伴噺
+    private Integer quantity;
+    //宸蹭紭鍖栨暟閲�
+    private Integer optimizeQuantity;
+    //鎺掔増鐘舵��
+    private String 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;
+    //鍒嗘灦鏃堕棿
+    @TableField(value = "`splitFrame_time`")
+    private LocalDate splitFrameTime;
+    //鎺掑簭
+    private Integer sort;
+    //寤虹珛鏃堕棿
+    private LocalDate createTime;
+    //淇敼鏃堕棿
+    private LocalDate updateTime;
+
+    //鏌ヨ鐢�
+    //鎶ュ伐缂栧彿
+    @TableField(select = false,exist = false)
+    private String reportingWorkId;
+    //浜у搧鍚嶇О
+    @TableField(select = false,exist = false)
+    private String glassChild;
+    //宸ヨ壓娴佺▼
+    @TableField(select = false,exist = false)
+    private String process;
+    //娴佺▼鍗″悎骞�
+    @TableField(select = false,exist = false)
+    private Integer merge;
+
+    //澶栭敭璁㈠崟琛�
+    @TableField(select = false,exist= false)
+    private Order order;
+    //澶栭敭璁㈠崟鏄庣粏琛�
+    @TableField(select = false,exist= false)
+    private OrderDetail orderDetail;
+    //澶栭敭璁㈠崟宸ヨ壓瀹℃牳琛�
+    @TableField(select = false,exist= false)
+    private OrderGlassDetail orderGlassDetail;
+
+    @TableField(select = false,exist= false)
+    private  Product product;
+}

--
Gitblit v1.8.0