From 1ca5584d7e3200a9af65a099bd26d3593e2ba702 Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期四, 07 五月 2026 14:36:08 +0800
Subject: [PATCH] 迁移pro
---
src/main/java/com/ruoyi/production/bean/dto/ProductStructureDto.java | 33 +++++++++++++++++++++++++++++++++
1 files changed, 33 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/ruoyi/production/bean/dto/ProductStructureDto.java b/src/main/java/com/ruoyi/production/bean/dto/ProductStructureDto.java
new file mode 100644
index 0000000..85f28d1
--- /dev/null
+++ b/src/main/java/com/ruoyi/production/bean/dto/ProductStructureDto.java
@@ -0,0 +1,33 @@
+package com.ruoyi.production.bean.dto;
+
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+
+import java.math.BigDecimal;
+import java.util.List;
+
+@Data
+public class ProductStructureDto {
+ @Schema(description = "涓婚敭ID")
+ private Long id;
+ @Schema(description = "BOM涓婚敭ID")
+ private Long bomId;
+ @Schema(description = "鐖剁骇ID")
+ private Long parentId;
+ @Schema(description = "浜у搧鍨嬪彿ID")
+ private Long productModelId;
+ @Schema(description = "鍗曚綅鐢ㄩ噺")
+ private BigDecimal unitQuantity;
+ @Schema(description = "鍗曚綅")
+ private String unit;
+ @Schema(description = "宸ュ簭ID")
+ private Long processId;
+ @Schema(description = "宸ュ簭鍚嶇О")
+ private String processName;
+ @Schema(description = "浜у搧鍚嶇О")
+ private String productName;
+ @Schema(description = "瑙勬牸鍨嬪彿")
+ private String model;
+ @Schema(description = "瀛愯妭鐐�")
+ private List<ProductStructureDto> children;
+}
--
Gitblit v1.9.3