From 71a4444510d9067654705f0c5803d5f12a21a092 Mon Sep 17 00:00:00 2001
From: guoyujie <guoyujie@ng.com>
Date: 星期二, 11 十一月 2025 09:17:34 +0800
Subject: [PATCH] 添加流程卡进度接口信息
---
north-glass-erp/src/main/java/com/example/erp/dto/mm/MaterialLogDTO.java | 67 +++++++++++++++++++++++++++++++++
1 files changed, 67 insertions(+), 0 deletions(-)
diff --git a/north-glass-erp/src/main/java/com/example/erp/dto/mm/MaterialLogDTO.java b/north-glass-erp/src/main/java/com/example/erp/dto/mm/MaterialLogDTO.java
new file mode 100644
index 0000000..2b62c85
--- /dev/null
+++ b/north-glass-erp/src/main/java/com/example/erp/dto/mm/MaterialLogDTO.java
@@ -0,0 +1,67 @@
+package com.example.erp.dto.mm;
+
+import com.alibaba.excel.annotation.ExcelProperty;
+import com.baomidou.mybatisplus.annotation.IdType;
+import com.baomidou.mybatisplus.annotation.TableId;
+import com.example.erp.entity.mm.MaterialOutbound;
+import lombok.Data;
+
+import java.time.LocalDate;
+
+@Data
+public class MaterialLogDTO {
+ @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;
+
+ @ExcelProperty("椤圭洰鍚嶇О")
+ private String project;
+ @ExcelProperty("鎵规")
+ private String batch;
+ @ExcelProperty("閿�鍞崟鍙�")
+ private String orderId;
+ @ExcelProperty("鐢熶骇鏃ユ湡")
+ private LocalDate dateOfManufacture;
+
+
+
+}
--
Gitblit v1.8.0