From 8eec3bdd93b15bb26f53e3e4b1f5c1679f2efc1a Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期五, 31 十月 2025 13:15:12 +0800
Subject: [PATCH] fix: s

---
 src/services/api/EnterpriseApplyFile.ts |   44 +++++++++++++++++++++++++++++++++++++-------
 1 files changed, 37 insertions(+), 7 deletions(-)

diff --git a/src/services/api/EnterpriseApplyFile.ts b/src/services/api/EnterpriseApplyFile.ts
index 90bd80f..a05e787 100644
--- a/src/services/api/EnterpriseApplyFile.ts
+++ b/src/services/api/EnterpriseApplyFile.ts
@@ -32,6 +32,21 @@
   });
 }
 
+/** 鍒犻櫎瀹㈡埛鍥涙祦鏉愭枡 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 || {}),
+  });
+}
+
 /** 瀹㈡埛绔垹闄ゆ寜鏈堜笂浼犲崟涓枃浠� DELETE /api/EnterpriseApplyFile/DeleteMonthApplySingleFile */
 export async function deleteMonthApplySingleFile(
   body: API.DeleteMonthApplySingleFileInput,
@@ -70,7 +85,7 @@
   body: API.GetCustomerUploadApplyFilesInput,
   options?: API.RequestConfig
 ) {
-  return request<API.GetCustomerUploadApplyFilesOutput[]>(
+  return request<API.GetCustomerUploadApplyFilesResponse>(
     '/api/EnterpriseApplyFile/GetCustomerUploadApplyFiles',
     {
       method: 'POST',
@@ -101,19 +116,19 @@
   );
 }
 
-/** 鏍规嵁鏈堜唤鏌ヨ鏄惁瀛樺湪鎻愪氦璁板綍 GET /api/EnterpriseApplyFile/GetCustomerUploadFileRecord */
+/** 鏍规嵁鏈堜唤鏌ヨ鏄惁瀛樺湪鎻愪氦璁板綍 POST /api/EnterpriseApplyFile/GetCustomerUploadFileRecord */
 export async function getCustomerUploadFileRecord(
-  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
-  params: API.APIgetCustomerUploadFileRecordParams,
+  body: API.GetCustomerUploadFileRecordInput,
   options?: API.RequestConfig
 ) {
   return request<API.GetCustomerUploadFileRecordOutput>(
     '/api/EnterpriseApplyFile/GetCustomerUploadFileRecord',
     {
-      method: 'GET',
-      params: {
-        ...params,
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
       },
+      data: body,
       ...(options || {}),
     }
   );
@@ -155,6 +170,21 @@
   );
 }
 
+/** 鏇存柊鍥涙祦鏉愭枡鐢虫姤閲戦 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