From 30587170535f5a850c59b4a2323b1a311a22aa6a Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期三, 22 四月 2026 09:35:44 +0800
Subject: [PATCH] refactor(production): 重构生产模块数据访问层
---
src/main/java/com/ruoyi/production/dto/BomImportDto.java | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/ruoyi/production/dto/BomImportDto.java b/src/main/java/com/ruoyi/production/dto/BomImportDto.java
new file mode 100644
index 0000000..a70f078
--- /dev/null
+++ b/src/main/java/com/ruoyi/production/dto/BomImportDto.java
@@ -0,0 +1,30 @@
+package com.ruoyi.production.dto;
+
+import com.ruoyi.framework.aspectj.lang.annotation.Excel;
+import lombok.Data;
+
+import java.math.BigDecimal;
+
+@Data
+public class BomImportDto {
+ @Excel(name = "鐖朵骇鍝佸悕绉�")
+ private String parentName;
+
+ @Excel(name = "鐖朵骇鍝佽鏍�")
+ private String parentSpec;
+
+ @Excel(name = "瀛愪骇鍝佸悕绉�")
+ private String childName;
+
+ @Excel(name = "瀛愪骇鍝佽鏍�")
+ private String childSpec;
+
+ @Excel(name = "鍗曚綅鐢ㄩ噺")
+ private BigDecimal unitQty;
+
+ @Excel(name = "宸ュ簭")
+ private String process;
+
+ @Excel(name = "澶囨敞")
+ private String remark;
+}
--
Gitblit v1.9.3