From 11214e3074266a23fe61e8eebbce647fdb7305ef Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期五, 12 六月 2026 18:02:03 +0800
Subject: [PATCH] 报价单修改-优化,增加导入记录,降价历史

---
 src/main/java/com/ruoyi/sales/dto/SalesQuotationProductImportDto.java |   38 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 38 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/sales/dto/SalesQuotationProductImportDto.java b/src/main/java/com/ruoyi/sales/dto/SalesQuotationProductImportDto.java
new file mode 100644
index 0000000..9a86a9b
--- /dev/null
+++ b/src/main/java/com/ruoyi/sales/dto/SalesQuotationProductImportDto.java
@@ -0,0 +1,38 @@
+package com.ruoyi.sales.dto;
+
+import com.ruoyi.framework.aspectj.lang.annotation.Excel;
+import io.swagger.v3.oas.annotations.media.Schema;
+import lombok.Data;
+
+import java.math.BigDecimal;
+
+/**
+ * 閿�鍞姤浠蜂骇鍝佸鍏TO锛堟姤浠蜂骇鍝佹暟鎹甋heet锛�
+ */
+@Data
+public class SalesQuotationProductImportDto {
+
+    @Excel(name = "鎶ヤ环鍗曞彿")
+    @Schema(description = "鎶ヤ环鍗曞彿锛堝叧鑱斾富琛級")
+    private String quotationNo;
+
+    @Excel(name = "浜у搧澶х被")
+    @Schema(description = "浜у搧澶х被")
+    private String productCategory;
+
+    @Excel(name = "瑙勬牸鍨嬪彿")
+    @Schema(description = "瑙勬牸鍨嬪彿")
+    private String specificationModel;
+
+    @Excel(name = "鍗曚綅")
+    @Schema(description = "鍗曚綅")
+    private String unit;
+
+    @Excel(name = "鍗曚环")
+    @Schema(description = "鍗曚环")
+    private BigDecimal unitPrice;
+
+    @Excel(name = "澶囨敞")
+    @Schema(description = "澶囨敞")
+    private String remark;
+}
\ No newline at end of file

--
Gitblit v1.9.3