From 7ee68df04b7a169d51ab95ad9955276c9aff6ee1 Mon Sep 17 00:00:00 2001
From: chenlu <1320612696@qq.com>
Date: 星期一, 22 九月 2025 09:44:34 +0800
Subject: [PATCH] 流程卡查询界面修改表格下方汇总方式
---
north-glass-erp/src/main/java/com/example/erp/entity/mm/MaterialLog.java | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 59 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/entity/mm/MaterialLog.java b/north-glass-erp/src/main/java/com/example/erp/entity/mm/MaterialLog.java
new file mode 100644
index 0000000..75063e7
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/entity/mm/MaterialLog.java
@@ -0,0 +1,59 @@
+package com.example.erp.entity.mm;
+
+import com.alibaba.excel.annotation.ExcelProperty;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.example.erp.entity.sd.OrderDetail;
+import lombok.Data;
+
+import java.time.LocalDate;
+
+@Data
+public class MaterialLog {
+ @TableId(type = IdType.AUTO)
+ @ExcelProperty("缂栧彿")
+ private Long id;
+ @ExcelProperty("鎿嶄綔鍗曞彿")
+ private String operationOrderNumber;
+ @ExcelProperty("绫诲瀷")
+ private String operateType;
+ @ExcelProperty("搴忓彿")
+ private Integer operationNumber;
+ @ExcelProperty("搴撳瓨缂栧彿")
+ private Long inventoryId;
+ @ExcelProperty("鐗╂枡缂栫爜")
+ private Long materialCode;
+ @ExcelProperty("鐗╂枡鍚嶇О")
+ private String materialName;
+ @ExcelProperty("浜у湴")
+ private String producer;
+ @ExcelProperty("鍗曚綅")
+ private String unit;
+ @ExcelProperty("瀹藉害")
+ private Double width;
+ @ExcelProperty("楂樺害")
+ private Double height;
+ @ExcelProperty("鍘氬害")
+ private Double thickness;
+ @ExcelProperty("鏁伴噺")
+ private Integer quantity;
+ @ExcelProperty("鍗曠墖闈㈢Н")
+ private Double singlePieceArea;
+ @ExcelProperty("搴撳瓨鍖哄煙")
+ private String inventoryArea;
+ @ExcelProperty("澶囨敞")
+ private String remarks;
+ @ExcelProperty("宸ョ▼鍙�")
+ private String projectNo;
+ @ExcelProperty("鎿嶄綔浜�")
+ private String operator;
+ @ExcelProperty("鍒涘缓鏃堕棿")
+ private LocalDate operateTime;
+
+ @ExcelProperty("浼樺寲浣跨敤鏁伴噺")
+ private Integer useCount;
+
+ private MaterialOutbound materialOutbound;
+
+
+}
--
Gitblit v1.8.0