From de6b53552f2e35f992f60c8cc7110bcb99105d96 Mon Sep 17 00:00:00 2001
From: zhangback <zhangback@163.com>
Date: 星期六, 13 十二月 2025 22:12:21 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/yagwly_fa_master' into yagwly_fa_master

---
 ui/admin-ui3/src/api/tms/tmsQuotePlan.ts |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/ui/admin-ui3/src/api/tms/tmsQuotePlan.ts b/ui/admin-ui3/src/api/tms/tmsQuotePlan.ts
index bf97bdc..4d6d696 100644
--- a/ui/admin-ui3/src/api/tms/tmsQuotePlan.ts
+++ b/ui/admin-ui3/src/api/tms/tmsQuotePlan.ts
@@ -1,6 +1,18 @@
 import request, {download, requestType} from "@/utils/request";
 import {BaseEntityInterface} from "@/utils/globalInterface";
 
+export interface TmsQuoteItemI extends BaseEntityInterface {
+    id?: number,
+    quotePlanId?: number,
+    freeName?: string,
+    unit?: string,
+    price?: string,
+    currency?: string,
+    createTime?: string,
+    updateTime?: string
+}
+
+
 export interface TmsQuotePlanI extends BaseEntityInterface {
     id?: number,
     systemCode?: string,
@@ -20,6 +32,10 @@
     updateTime?: string,
     remark?: string,
     planType?: string,
+    providerType?: number,
+    providerId?: number,
+    providerName?: string,
+    items?: TmsQuoteItemI[],
 }
 
 
@@ -42,6 +58,13 @@
         method: 'get'
     })
 }
+export const selectPaymentTmsQuotePlan: requestType = (params) => {
+    return request({
+        url: '/tms/tmsQuotePlan/selectPaymentTmsQuotePlan',
+        method: 'get',
+        params: params
+    })
+}
 
 /**
  * 鏂板鎶ヤ环鏂规绠$悊

--
Gitblit v1.8.0