From 4521e55b7ce2840dcb91340c17f3159892bcc14d Mon Sep 17 00:00:00 2001
From: 廖井涛 <2265517004@qq.com>
Date: 星期三, 24 十二月 2025 13:32:29 +0800
Subject: [PATCH] 修改订单金额时,根据情况是否调用发货单修改金额
---
north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGlassShelfInformation.java | 27 +++++++++++++++++++++++++++
1 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGlassShelfInformation.java b/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGlassShelfInformation.java
new file mode 100644
index 0000000..e386bef
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/mm/FinishedGlassShelfInformation.java
@@ -0,0 +1,27 @@
+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 FinishedGlassShelfInformation {
+ @TableId(type = IdType.AUTO)
+
+ private Long id;
+ private String glassShelfNumber;
+ private String glassShelfName;
+ private Integer quantity;
+ private Double price;
+ private String unit;
+ private Double maxWeight;
+ private Double maxWidth;
+ private Double maxHeight;
+ private String remarks;
+ private LocalDate createTime;
+
+
+
+}
--
Gitblit v1.8.0