From 1750abd11320f8d09ffe1580b7467dba87c86c89 Mon Sep 17 00:00:00 2001
From: guoyujie <guoyujie@ng.com>
Date: 星期三, 10 十二月 2025 14:40:25 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10101/r/ERP_override

---
 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