From 6fc60fcdccd4c99e43be482ecf3757108e833c34 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期二, 04 十一月 2025 17:27:34 +0800
Subject: [PATCH] fix: 四流

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

diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts
index 39dd756..e420fb5 100644
--- a/src/services/api/ParkBountyApply.ts
+++ b/src/services/api/ParkBountyApply.ts
@@ -17,12 +17,42 @@
   });
 }
 
+/** 浼佷笟鑷富鐢虫姤 POST /api/ParkBountyApply/AddParkBountyApplyByEnterprise */
+export async function addParkBountyApplyByEnterprise(
+  body: API.AddParkBountyApplyByEnterpriseInput,
+  options?: API.RequestConfig
+) {
+  return request<string>('/api/ParkBountyApply/AddParkBountyApplyByEnterprise', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 濂栧姳閲�-鍑鸿处-瀹℃壒 POST /api/ParkBountyApply/AuditParkBountyApplyTrade */
 export async function auditParkBountyApplyTrade(
   body: API.AuditParkBountyTradeInput,
   options?: API.RequestConfig
 ) {
   return request<number>('/api/ParkBountyApply/AuditParkBountyApplyTrade', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 鐢熸垚濂栧姳閲戠粺璁℃姤琛� POST /api/ParkBountyApply/BuildRewardStatistics */
+export async function buildRewardStatistics(
+  body: API.BuildRewardStatisticsInput,
+  options?: API.RequestConfig
+) {
+  return request<any>('/api/ParkBountyApply/BuildRewardStatistics', {
     method: 'POST',
     headers: {
       'Content-Type': 'application/json',
@@ -254,6 +284,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,
@@ -457,6 +505,24 @@
   );
 }
 
+/** 鑾峰彇鎵归噺鐧昏涓湭璐㈡斂鎷ㄤ粯鐨勪紒涓� GET /api/ParkBountyApply/GetParkBountyApplyBatchFinanceRegEnterprise */
+export async function getParkBountyApplyBatchFinanceRegEnterprise(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIgetParkBountyApplyBatchFinanceRegEnterpriseParams,
+  options?: API.RequestConfig
+) {
+  return request<API.GetNotTransferCompanyNameListOutput[]>(
+    '/api/ParkBountyApply/GetParkBountyApplyBatchFinanceRegEnterprise',
+    {
+      method: 'GET',
+      params: {
+        ...params,
+      },
+      ...(options || {}),
+    }
+  );
+}
+
 /** 杩愯惀绔�-濂栧姳閲戝彂鏀�-鍏ヨ处-鑾峰彇鎵归噺鍏ヨ处涓湭鍏ヨ处鐨勪紒涓� GET /api/ParkBountyApply/GetParkBountyApplyBatchTransferEnterprise */
 export async function getParkBountyApplyBatchTransferEnterprise(
   // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
@@ -465,6 +531,24 @@
 ) {
   return request<API.GetNotTransferCompanyNameListOutput[]>(
     '/api/ParkBountyApply/GetParkBountyApplyBatchTransferEnterprise',
+    {
+      method: 'GET',
+      params: {
+        ...params,
+      },
+      ...(options || {}),
+    }
+  );
+}
+
+/** 鑾峰彇鎵归噺鐧昏涓湭鐧昏鐨勪紒涓� GET /api/ParkBountyApply/GetParkBountyApplyBatchTransferRegEnterprise */
+export async function getParkBountyApplyBatchTransferRegEnterprise(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIgetParkBountyApplyBatchTransferRegEnterpriseParams,
+  options?: API.RequestConfig
+) {
+  return request<API.GetNotTransferCompanyNameListOutput[]>(
+    '/api/ParkBountyApply/GetParkBountyApplyBatchTransferRegEnterprise',
     {
       method: 'GET',
       params: {
@@ -739,6 +823,21 @@
   );
 }
 
+/** 鏌ヨ濂栧姳閲戠粺璁℃姤琛� GET /api/ParkBountyApply/GetRewardStatisticsMonths */
+export async function getRewardStatisticsMonths(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIgetRewardStatisticsMonthsParams,
+  options?: API.RequestConfig
+) {
+  return request<string[]>('/api/ParkBountyApply/GetRewardStatisticsMonths', {
+    method: 'GET',
+    params: {
+      ...params,
+    },
+    ...(options || {}),
+  });
+}
+
 /** 瀵煎叆濂栧姳閲戠敵鎶ヨ储鏀�/骞冲彴鎷ㄤ粯鎬婚 POST /api/ParkBountyApply/ImportParkBountyAppalyAmount */
 export async function importParkBountyAppalyAmount(
   body: API.ImportParkBountyAppalyAmountInput,
@@ -808,6 +907,21 @@
   options?: API.RequestConfig
 ) {
   return request<number>('/api/ParkBountyApply/OutcheckParkBountyApply', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 鏀垮姟绔�-鏉愭枡瀹℃牳-澶栭儴澶嶅鏍� 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',
@@ -1042,6 +1156,14 @@
   });
 }
 
+/** 淇鏁版嵁3.4.2.6 POST /api/ParkBountyApply/RepairData3_4_2_6 */
+export async function repairData3426(options?: API.RequestConfig) {
+  return request<any>('/api/ParkBountyApply/RepairData3_4_2_6', {
+    method: 'POST',
+    ...(options || {}),
+  });
+}
+
 /** 淇濆瓨濂栭噾鍒嗛厤琛ㄣ�佸鍔遍噾姹囨�昏〃銆佸鍔辨�婚 POST /api/ParkBountyApply/SaveParkBountyApplyCollectFile */
 export async function saveParkBountyApplyCollectFile(
   body: API.SaveParkBountyApplyCollectFileInput,
@@ -1072,6 +1194,21 @@
   });
 }
 
+/** 鍚屾濂栧姳閲�-浼佷笟鑷韩鍑鸿处-瀹℃壒 POST /api/ParkBountyApply/SyncAuditParkBountyApplyTradeBySelf */
+export async function syncAuditParkBountyApplyTradeBySelf(
+  body: API.SyncAuditParkBountyApplyTradeBySelfInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/SyncAuditParkBountyApplyTradeBySelf', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鍚屾濂栧姳閲戝嚭璐︿俊鎭� POST /api/ParkBountyApply/SyncParkBountyApplyTrade */
 export async function syncParkBountyApplyTrade(
   body: API.CreateParkBountyTradeInput,
@@ -1090,6 +1227,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