From 42bc535c947bcf999c706a753635d35ef73f91e6 Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期一, 22 四月 2024 09:11:16 +0800
Subject: [PATCH] Merge branch 'master' of https://gitee.com/a1536384743/erp_-override
---
north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderGlassDetail.java | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 44 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..c4ff1c0
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/sd/OrderGlassDetail.java
@@ -0,0 +1,44 @@
+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;
+import java.util.List;
+
+@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