From ef5a518c3e2c1fe41aa60f56ca31ddafa0cb1561 Mon Sep 17 00:00:00 2001
From: guoyuji <guoyujie@ng.com>
Date: 星期四, 23 五月 2024 08:32:36 +0800
Subject: [PATCH] 添加产品汇总报表

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