From 48ee55f9ba71d07fbce36da0f2fa081bd14a4068 Mon Sep 17 00:00:00 2001
From: gongchunyi <deslre0381@gmail.com>
Date: 星期三, 01 四月 2026 11:10:04 +0800
Subject: [PATCH] feat: 售后附件与临期售后信息接口

---
 src/main/java/com/ruoyi/sales/controller/SalesQuotationController.java |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/ruoyi/sales/controller/SalesQuotationController.java b/src/main/java/com/ruoyi/sales/controller/SalesQuotationController.java
index f9ea1df..7ea82b7 100644
--- a/src/main/java/com/ruoyi/sales/controller/SalesQuotationController.java
+++ b/src/main/java/com/ruoyi/sales/controller/SalesQuotationController.java
@@ -51,6 +51,21 @@
     public AjaxResult update(@RequestBody SalesQuotationDto salesQuotationDto) {
         return AjaxResult.success(salesQuotationService.edit(salesQuotationDto));
     }
+
+    /**
+     * 璇︽儏
+     * @param type   瀹㈡埛绫诲瀷
+     * @param productName 浜у搧鍚嶇О
+     * @param specification  瑙勬牸
+     * @return
+     */
+    @ApiOperation("璇︽儏")
+    @GetMapping("/detail")
+    public AjaxResult detail(@RequestParam("type") String type,
+                             @RequestParam("productName")String productName,
+                             @RequestParam("specification")String specification) {
+        return AjaxResult.success(salesQuotationService.detail(type, productName, specification));
+    }
     @DeleteMapping("/delete")
     public AjaxResult delete(@RequestBody Long id) {
         return AjaxResult.success(salesQuotationService.delete(id));

--
Gitblit v1.9.3