From 850d7ae98608119495c2cf5408d376ef12253eca Mon Sep 17 00:00:00 2001
From: guoyujie <guoyujie@ng.com>
Date: 星期二, 23 十二月 2025 14:38:23 +0800
Subject: [PATCH] 提交 相关参数
---
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