From 5ce0cecd476a5c034f7ae12309a6c65078c3f44e Mon Sep 17 00:00:00 2001
From: wujianwei <wjw@11.com>
Date: 星期三, 17 十二月 2025 17:21:40 +0800
Subject: [PATCH] 新增应收账单管理和明细

---
 ui/admin-ui3/src/api/tms/tmsQuotePlan.ts |   16 ++++++++++++++++
 1 files changed, 16 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..4549bfd 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[],
 }
 
 

--
Gitblit v1.8.0