From b9e4e2edbb3767ee347a91d2238544ae736b53c0 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期二, 22 七月 2025 10:29:27 +0800
Subject: [PATCH] Merge branch 'master' of http://10.153.19.25:10105/r/ERP_override

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

diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/mm/MaterialOutboundDetail.java b/north-glass-erp/src/main/java/com/example/erp/entity/mm/MaterialOutboundDetail.java
new file mode 100644
index 0000000..0b7132d
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/mm/MaterialOutboundDetail.java
@@ -0,0 +1,37 @@
+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 MaterialOutboundDetail {
+    @TableId(type = IdType.AUTO)
+
+    private Long id;
+    private Long inventoryId;
+    private String materialOutboundId;
+    private Long materialOutboundNumber;
+    private String inventoryOrganization;
+    private String materialName;
+    private String materialCode;
+    private Integer useId;
+    private String producer;
+    private Double width;
+    private Double height;
+    private Double thickness;
+    private String unit;
+    private Integer outboundQuantity;
+    private Double singlePieceArea;
+    private String inventoryArea;
+    private LocalDate dateOfManufacture;
+    private String remarks;
+    private MaterialInventory materialInventory;
+    private MaterialOutbound materialOutbound;
+
+
+
+
+}

--
Gitblit v1.8.0