From ba8d1c3083b10e57e9b9f9feb9f192d6f37df1fa Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期五, 14 十一月 2025 18:52:56 +0800
Subject: [PATCH] fix: bug

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

diff --git a/src/services/api/EnterpriseApplyFile.ts b/src/services/api/EnterpriseApplyFile.ts
index a05e787..68c201a 100644
--- a/src/services/api/EnterpriseApplyFile.ts
+++ b/src/services/api/EnterpriseApplyFile.ts
@@ -32,6 +32,21 @@
   });
 }
 
+/** 纭鎻愪氦鏉愭枡涓婁紶V2 POST /api/EnterpriseApplyFile/CustomerUploadMonthApplyFileV2 */
+export async function customerUploadMonthApplyFileV2(
+  body: API.CustomerUploadMonthApplyFileInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/EnterpriseApplyFile/CustomerUploadMonthApplyFileV2', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鍒犻櫎瀹㈡埛鍥涙祦鏉愭枡 POST /api/EnterpriseApplyFile/DeleteEnterpriseApplyUploadFile */
 export async function deleteEnterpriseApplyUploadFile(
   // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
@@ -116,6 +131,24 @@
   );
 }
 
+/** 鑾峰彇鏈堜唤涓婁紶鏂囦欢璇︽儏V2 POST /api/EnterpriseApplyFile/GetCustomerUploadApplyFilesV2 */
+export async function getCustomerUploadApplyFilesV2(
+  body: API.GetCustomerUploadApplyFilesInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetCustomerUploadApplyFilesResponse>(
+    '/api/EnterpriseApplyFile/GetCustomerUploadApplyFilesV2',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 鏍规嵁鏈堜唤鏌ヨ鏄惁瀛樺湪鎻愪氦璁板綍 POST /api/EnterpriseApplyFile/GetCustomerUploadFileRecord */
 export async function getCustomerUploadFileRecord(
   body: API.GetCustomerUploadFileRecordInput,
@@ -134,6 +167,24 @@
   );
 }
 
+/** 鏍规嵁鏈堜唤鏌ヨ鏄惁瀛樺湪鎻愪氦璁板綍V2 POST /api/EnterpriseApplyFile/GetCustomerUploadFileRecordV2 */
+export async function getCustomerUploadFileRecordV2(
+  body: API.GetCustomerUploadFileRecordInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetCustomerUploadFileRecordOutput>(
+    '/api/EnterpriseApplyFile/GetCustomerUploadFileRecordV2',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 鎸夋湀浠芥煡璇紒涓氫笂浼犳潗鏂欏垪琛� POST /api/EnterpriseApplyFile/GetEnterpriseApplyUploadFile */
 export async function getEnterpriseApplyUploadFile(
   body: API.PageInput,

--
Gitblit v1.9.1