From 7ab0221edafd81468b37935fd6e8a9f7cebd181f Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期一, 08 六月 2026 15:14:41 +0800
Subject: [PATCH] 销售台账/采购台账,在新增产品数据的时候,增加一个运费单价(非必填),就像那个含税单价一样,当用户填完数量和运费单价之后,可以直接计算出这个产品的总运费

---
 src/main/java/com/ruoyi/production/bean/dto/BomImportDto.java |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/production/bean/dto/BomImportDto.java b/src/main/java/com/ruoyi/production/bean/dto/BomImportDto.java
index 4557cf7..11393f3 100644
--- a/src/main/java/com/ruoyi/production/bean/dto/BomImportDto.java
+++ b/src/main/java/com/ruoyi/production/bean/dto/BomImportDto.java
@@ -1,30 +1,38 @@
 package com.ruoyi.production.bean.dto;
 
 import com.ruoyi.framework.aspectj.lang.annotation.Excel;
+import io.swagger.v3.oas.annotations.media.Schema;
 import lombok.Data;
 
 import java.math.BigDecimal;
 
 @Data
 public class BomImportDto {
+    @Schema(description = "鐖朵骇鍝佸悕绉�")
     @Excel(name = "鐖朵骇鍝佸悕绉�")
     private String parentName;
 
+    @Schema(description = "鐖朵骇鍝佽鏍�")
     @Excel(name = "鐖朵骇鍝佽鏍�")
     private String parentSpec;
 
+    @Schema(description = "瀛愪骇鍝佸悕绉�")
     @Excel(name = "瀛愪骇鍝佸悕绉�")
     private String childName;
 
+    @Schema(description = "瀛愪骇鍝佽鏍�")
     @Excel(name = "瀛愪骇鍝佽鏍�")
     private String childSpec;
 
+    @Schema(description = "鍗曚綅鐢ㄩ噺")
     @Excel(name = "鍗曚綅鐢ㄩ噺")
     private BigDecimal unitQty;
 
+    @Schema(description = "宸ュ簭")
     @Excel(name = "宸ュ簭")
     private String process;
 
+    @Schema(description = "澶囨敞")
     @Excel(name = "澶囨敞")
     private String remark;
 }

--
Gitblit v1.9.3