From a4908aafb0aa9adbc70a006214e7580c626396a5 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期四, 15 八月 2024 17:10:06 +0800
Subject: [PATCH] 添加流程卡上是否显示其它备注配置
---
north-glass-erp/src/main/java/com/example/erp/entity/pp/FlowCard.java | 87 +++++++++++++++++++++++++++++++++++++++++++
1 files changed, 87 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..22dc95f
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/pp/FlowCard.java
@@ -0,0 +1,87 @@
+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;
+ //鍒嗘灦鏃堕棿
+ private LocalDate splitFrameTime;
+ //鎺掑簭
+ private Integer sort;
+ //寤虹珛鏃堕棿
+ private LocalDate createTime;
+ //淇敼鏃堕棿
+ private LocalDate updateTime;
+
+ //鏌ヨ鐢�
+ //鎶ュ伐缂栧彿
+ private String reportingWorkId;
+ //浜у搧鍚嶇О
+ private String glassChild;
+ //宸ヨ壓娴佺▼
+ private String process;
+
+ //澶栭敭璁㈠崟琛�
+ @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