From 1b86547ddc47a96e86eb376d0a381814ad621fd0 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期四, 22 二月 2024 08:13:31 +0800
Subject: [PATCH] 提交产品界面

---
 north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderGlassDetail.java |   37 +++++++++++++++++++++++++++++++++++++
 1 files changed, 37 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..7f9835b
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderGlassDetail.java
@@ -0,0 +1,37 @@
+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 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