From a97c0e84c8d1f50aa65935643a580527f30b7ece Mon Sep 17 00:00:00 2001 From: 廖井涛 <2265517004@qq.com> Date: 星期二, 12 三月 2024 08:39:38 +0800 Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/ERP_override --- north-glass-erp/src/main/java/com/example/erp/entity/pp/FlowCard.java | 72 ++++++++++++++++++++++++++++++++++++ 1 files changed, 72 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..fdcfa82 --- /dev/null +++ b/north-glass-erp/src/main/java/com/example/erp/entity/pp/FlowCard.java @@ -0,0 +1,72 @@ +package com.example.erp.entity.pp; + +import com.baomidou.mybatisplus.annotation.IdType; +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 LocalDate createTime; + //淇敼鏃堕棿 + private LocalDate updateTime; + + //澶栭敭璁㈠崟琛� + private Order order; + //澶栭敭璁㈠崟鏄庣粏琛� + private OrderDetail orderDetail; + //澶栭敭璁㈠崟宸ヨ壓瀹℃牳琛� + private OrderGlassDetail orderGlassDetail; + + private Product product; +} -- Gitblit v1.8.0