From 900b4223386a8010e80f1091c4371c19e9117d63 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期二, 27 二月 2024 13:50:42 +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/sd/OrderGlassDetail.java |   40 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 40 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..e2f059f
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderGlassDetail.java
@@ -0,0 +1,40 @@
+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 lombok.Data;
+
+import java.time.LocalDate;
+
+@Data
+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)
+    private  Order order;
+    //@TableField(select = false)
+//   @ManyToOne(fetch = FetchType.LAZY)
+    private  OrderDetail orderDetail;
+
+
+}

--
Gitblit v1.8.0