From 716384b3c2e70842e093207cfd374d2a39fffbe6 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期一, 08 九月 2025 13:23:18 +0800
Subject: [PATCH] 更新

---
 north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGlassShelfLog.java |   31 +++++++++++++++++++++++++++++++
 1 files changed, 31 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..f5ad149
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGlassShelfLog.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;
+
+import java.time.LocalDate;
+
+@Data
+public class FinishedGlassShelfLog {
+    @TableId(type = IdType.AUTO)
+
+    private Long id;
+    private String documentId;
+    private Integer documentNumber;
+    private String 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;
+
+
+
+}

--
Gitblit v1.8.0