From 9dd95cc0cde6664d1cfcb4e14f402981c57c2585 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 30 十月 2025 17:58:25 +0800
Subject: [PATCH] fix: s

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

diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts
index fd6e378..8a815b0 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,
@@ -1164,6 +1182,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