From 2caafed814dbbaf0905e77db91ed7835d8d854d9 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 16 六月 2025 13:08:37 +0800
Subject: [PATCH] fix: bug

---
 src/services/api/EnterpriseApplyFile.ts |   65 ++++++++++++++++++++++++++++++++
 1 files changed, 64 insertions(+), 1 deletions(-)

diff --git a/src/services/api/EnterpriseApplyFile.ts b/src/services/api/EnterpriseApplyFile.ts
index bc7de20..6413946 100644
--- a/src/services/api/EnterpriseApplyFile.ts
+++ b/src/services/api/EnterpriseApplyFile.ts
@@ -2,6 +2,21 @@
 // @ts-ignore
 import { request } from '@/utils/request';
 
+/** 鎵归噺寮曠敤浼佷笟璧勬枡 GET /api/EnterpriseApplyFile/BatchQuoteEnterpriseApplyFile */
+export async function batchQuoteEnterpriseApplyFile(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIbatchQuoteEnterpriseApplyFileParams,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/EnterpriseApplyFile/BatchQuoteEnterpriseApplyFile', {
+    method: 'GET',
+    params: {
+      ...params,
+    },
+    ...(options || {}),
+  });
+}
+
 /** 纭鎻愪氦鏉愭枡涓婁紶 POST /api/EnterpriseApplyFile/CustomerUploadMonthApplyFile */
 export async function customerUploadMonthApplyFile(
   body: API.CustomerUploadMonthApplyFileInput,
@@ -13,6 +28,21 @@
       'Content-Type': 'application/json',
     },
     data: body,
+    ...(options || {}),
+  });
+}
+
+/** 鍒犻櫎瀹㈡埛鍥涙祦鏉愭枡 POST /api/EnterpriseApplyFile/DeleteEnterpriseApplyUploadFile */
+export async function deleteEnterpriseApplyUploadFile(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIdeleteEnterpriseApplyUploadFileParams,
+  options?: API.RequestConfig
+) {
+  return request<any>('/api/EnterpriseApplyFile/DeleteEnterpriseApplyUploadFile', {
+    method: 'POST',
+    params: {
+      ...params,
+    },
     ...(options || {}),
   });
 }
@@ -55,7 +85,7 @@
   body: API.GetCustomerUploadApplyFilesInput,
   options?: API.RequestConfig
 ) {
-  return request<API.GetCustomerUploadApplyFilesOutput[]>(
+  return request<API.GetCustomerUploadApplyFilesResponse>(
     '/api/EnterpriseApplyFile/GetCustomerUploadApplyFiles',
     {
       method: 'POST',
@@ -122,6 +152,39 @@
   );
 }
 
+/** 鑾峰彇鍥尯姹囨�绘潗鏂欑被鍨� POST /api/EnterpriseApplyFile/GetParkCollectFileTypeList */
+export async function getParkCollectFileTypeList(
+  body: API.GetParkCollectFileTypeListInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetCustomerUploadApplyFilesOutput[]>(
+    '/api/EnterpriseApplyFile/GetParkCollectFileTypeList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
+/** 鏇存柊鍥涙祦鏉愭枡鐢虫姤閲戦 POST /api/EnterpriseApplyFile/UpdateEnterpriseMonthApplyFileApplyAmount */
+export async function updateEnterpriseMonthApplyFileApplyAmount(
+  body: API.UpdateEnterpriseMonthApplyFileApplyAmountInput,
+  options?: API.RequestConfig
+) {
+  return request<any>('/api/EnterpriseApplyFile/UpdateEnterpriseMonthApplyFileApplyAmount', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 涓婁紶鏉愭枡璇︽儏-缂栬緫-涓婁紶鏂囦欢 POST /api/EnterpriseApplyFile/UploadMonthApplySingleFiles */
 export async function uploadMonthApplySingleFiles(
   body: API.UploadMonthApplySingleFilesInput,

--
Gitblit v1.9.1