From 34669fa71bd2cc4a4ff57d7d2440a95da998b6b5 Mon Sep 17 00:00:00 2001
From: wujianwei <wjw@11.com>
Date: 星期一, 30 三月 2026 15:47:55 +0800
Subject: [PATCH] 修改异步
---
tms/src/main/java/com/ruoyi/tms/controller/TmsQuotePlanController.java | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/tms/src/main/java/com/ruoyi/tms/controller/TmsQuotePlanController.java b/tms/src/main/java/com/ruoyi/tms/controller/TmsQuotePlanController.java
index 09fb69f..e1ac0c8 100644
--- a/tms/src/main/java/com/ruoyi/tms/controller/TmsQuotePlanController.java
+++ b/tms/src/main/java/com/ruoyi/tms/controller/TmsQuotePlanController.java
@@ -1,6 +1,8 @@
package com.ruoyi.tms.controller;
import java.util.List;
+
+import com.ruoyi.tms.domain.TmsQuoteItem;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
@@ -73,6 +75,12 @@
return AjaxResult.success(tmsQuotePlanService.selectTmsQuotePlanById(id));
}
+ @GetMapping(value = "/selectPaymentTmsQuotePlan")
+ public AjaxResult selectPaymentTmsQuotePlan(TmsQuoteItem tmsQuotePlan)
+ {
+ return AjaxResult.success(tmsQuotePlanService.selectPaymentTmsQuotePlan(tmsQuotePlan));
+ }
+
/**
* 鏂板鎶ヤ环鏂规绠$悊
*/
--
Gitblit v1.8.0