From aece48b253b2e0b814bbdf5ee3d474e8cf697122 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期四, 18 十二月 2025 16:39:48 +0800
Subject: [PATCH] Merge branch 'master' of http://bore.pub:10439/r/ERP_override

---
 north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGlassShelfWithdrawDetails.java |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)

diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGlassShelfWithdrawDetails.java b/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGlassShelfWithdrawDetails.java
new file mode 100644
index 0000000..80f2fec
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGlassShelfWithdrawDetails.java
@@ -0,0 +1,31 @@
+package com.example.erp.entity.mm;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import lombok.Data;
+
+@Data
+public class FinishedGlassShelfWithdrawDetails {
+    @TableId(type = IdType.AUTO)
+
+    private Long id;
+
+    private String withdrawId;
+    private Integer withdrawNumber;
+    private String glassShelfName;
+    private Double maxWeight;
+    private Double maxWidth;
+    private Double maxHeight;
+    private String emitId;
+    private Integer emitNumber;
+    private Integer quantity;
+    private String unit;
+    private Double price;
+    private Double money;
+    private String remarks;
+    private FinishedGlassShelfWithdraw finishedGlassShelfWithdraw;
+    private FinishedGlassShelfEmitDetails finishedGlassShelfEmitDetails;
+
+
+
+}

--
Gitblit v1.8.0