From 2ae58a2f2d53c220c4b02d8e9f17770f63397b1e Mon Sep 17 00:00:00 2001
From: liyong <18434998025@163.com>
Date: 星期四, 26 二月 2026 10:40:18 +0800
Subject: [PATCH] 人力资源模块迁移
---
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