From 047545d48c78f39e8cf4082dbcdd2be15654470f Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期四, 11 十二月 2025 16:12:20 +0800
Subject: [PATCH] 订单bom界面bom查询bug,部分情况重量不显示bug

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

diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGlassShelfLog.java b/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGlassShelfLog.java
new file mode 100644
index 0000000..a3ead2e
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGlassShelfLog.java
@@ -0,0 +1,32 @@
+package com.example.erp.entity.mm;
+
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import lombok.Data;
+
+import java.time.LocalDate;
+
+@Data
+public class FinishedGlassShelfLog {
+    @TableId(type = IdType.AUTO)
+
+    private Long id;
+    private String documentId;
+    private Integer documentNumber;
+    private Integer type;
+    private String glassShelfName;
+    private String glassShelfNumber;
+    private Integer quantity;
+    private String unit;
+    private Double price;
+    private Double money;
+    private String remarks;
+    private Double maxWeight;
+    private Double maxWidth;
+    private Double maxHeight;
+    private LocalDate createTime;
+    private String operator;
+
+
+
+}

--
Gitblit v1.8.0