From b90435111a9cb88a9302b6ac1f70c6d475452efe Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期一, 11 三月 2024 11:28:53 +0800
Subject: [PATCH] 修改发货库存修改

---
 north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderGlassDetail.java |   43 +++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 43 insertions(+), 0 deletions(-)

diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderGlassDetail.java b/north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderGlassDetail.java
new file mode 100644
index 0000000..6c36b81
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderGlassDetail.java
@@ -0,0 +1,43 @@
+package com.example.erp.entity.sd;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableField;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.baomidou.mybatisplus.annotation.TableName;
+import lombok.Data;
+
+import java.time.LocalDate;
+
+@Data
+@TableName("sd.order_glass_detail")
+public class OrderGlassDetail {
+    @TableId(type = IdType.AUTO)
+
+    private Long id;
+    private String orderId;
+    private String orderNumber;
+    private Integer technologyNumber;
+    private String glassAddress;
+    private String glassChild;
+    private Double childWidth;
+    private Double childHeight;
+    private Double area;
+    private Double totalArea;
+    private String icon;
+    private String process;
+    private String productionId;
+    private Integer splittingStatus;
+    private String founder;
+    @TableField(value = "`group`")
+    private Integer group;
+    private LocalDate productionTime;
+    private LocalDate createTime;
+   @TableField(select = false,exist = false)
+    private  Order order;
+    //@TableField(select = false)
+//   @ManyToOne(fetch = FetchType.LAZY)
+    @TableField(select = false,exist = false)
+    private  OrderDetail orderDetail;
+
+
+}

--
Gitblit v1.8.0