From ac2ca1c55728096667ceb9713e06995a4dfdf0fc Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 03 十一月 2025 18:01:49 +0800
Subject: [PATCH] fix: 四流

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

diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts
index fd6e378..fdbd9c9 100644
--- a/src/services/api/ParkBountyApply.ts
+++ b/src/services/api/ParkBountyApply.ts
@@ -269,6 +269,24 @@
   );
 }
 
+/** 鑾峰彇浼佷笟琛ュ厖涓婁紶鏉愭枡 POST /api/ParkBountyApply/GetEnterpriseParkApplyUploadExtraFiles */
+export async function getEnterpriseParkApplyUploadExtraFiles(
+  body: API.GetEnterpriseParkApplyUploadFilesInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetEnterpriseParkApplyUploadFileOutput[]>(
+    '/api/ParkBountyApply/GetEnterpriseParkApplyUploadExtraFiles',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 鑾峰彇鐢虫姤涓嬩紒涓氫笂浼犵殑鏂囦欢 POST /api/ParkBountyApply/GetEnterpriseParkApplyUploadFiles */
 export async function getEnterpriseParkApplyUploadFiles(
   body: API.GetEnterpriseParkApplyUploadFilesInput,
@@ -868,6 +886,21 @@
   });
 }
 
+/** 鏀垮姟绔�-鏉愭枡瀹℃牳-澶栭儴澶嶅鏍� POST /api/ParkBountyApply/OutReCheckParkBountyApply */
+export async function outReCheckParkBountyApply(
+  body: API.OutReCheckParkBountyApplyInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/OutReCheckParkBountyApply', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鎵归噺璐㈡斂鍏ヨ处 POST /api/ParkBountyApply/ParkBountyApplyBatchFinance */
 export async function parkBountyApplyBatchFinance(
   body: API.ParkBountyApplyBatchFinanceInput,
@@ -1164,6 +1197,39 @@
   );
 }
 
+/** 鍚屾鏇存柊娑堣垂璁板綍閲岀殑淇濆崟鏂囦欢 POST /api/ParkBountyApply/SyncUpdateParkBountyApplyTradeInsuranceBillFile */
+export async function syncUpdateParkBountyApplyTradeInsuranceBillFile(
+  body: API.UpdateParkBountyApplyTradeInsuranceBillFile,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/SyncUpdateParkBountyApplyTradeInsuranceBillFile', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 涓婁紶浼佷笟琛ュ厖鏉愭枡 POST /api/ParkBountyApply/UploadParkBountyApplyCompanyExtraFile */
+export async function uploadParkBountyApplyCompanyExtraFile(
+  body: API.UploadParkApplyCustomerFilesInput,
+  options?: API.RequestConfig
+) {
+  return request<API.UploadParkBountyApplyCompanyFileOutput>(
+    '/api/ParkBountyApply/UploadParkBountyApplyCompanyExtraFile',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 涓婁紶浼佷笟鏉愭枡 POST /api/ParkBountyApply/UploadParkBountyApplyCompanyFile */
 export async function uploadParkBountyApplyCompanyFile(
   body: API.UploadParkBountyApplyCompanyFileInput,

--
Gitblit v1.9.1