From bd20a385dd86cf32735578c4c140a0aebf758e45 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期四, 15 五月 2025 17:15:07 +0800
Subject: [PATCH] fix: bug

---
 src/services/api/ParkBountyApply.ts |  250 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 248 insertions(+), 2 deletions(-)

diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts
index 908a4cd..fbeb4ac 100644
--- a/src/services/api/ParkBountyApply.ts
+++ b/src/services/api/ParkBountyApply.ts
@@ -32,6 +32,21 @@
   });
 }
 
+/** 鎻愮幇瀹℃牳 POST /api/ParkBountyApply/CheckEnterpriseApplyDrawWith */
+export async function checkEnterpriseApplyDrawWith(
+  body: API.CheckEnterpriseApplyDrawWithInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/CheckEnterpriseApplyDrawWith', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 棰勫厖鍊煎鏍� POST /api/ParkBountyApply/CheckUserEnterpriseRecharge */
 export async function checkUserEnterpriseRecharge(
   body: API.CheckUserEnterpriseRechargeInput,
@@ -47,12 +62,42 @@
   });
 }
 
+/** 姝ゅ鍚庣娌℃湁鎻愪緵娉ㄩ噴 GET /api/ParkBountyApply/DeleteParkEnterpriseApplyFile */
+export async function deleteParkEnterpriseApplyFile(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIdeleteParkEnterpriseApplyFileParams,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/DeleteParkEnterpriseApplyFile', {
+    method: 'GET',
+    params: {
+      ...params,
+    },
+    ...(options || {}),
+  });
+}
+
 /** 缁х画鐢虫姤 POST /api/ParkBountyApply/EditParkBountyApply */
 export async function editParkBountyApply(
   body: API.EditParkBountyApplyStepOneInput,
   options?: API.RequestConfig
 ) {
   return request<number>('/api/ParkBountyApply/EditParkBountyApply', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 瀹㈡埛绔�-鐢宠鎻愮幇 POST /api/ParkBountyApply/EnterpriseApplyDrawWith */
+export async function enterpriseApplyDrawWith(
+  body: API.EnterpriseApplyDrawWithInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/EnterpriseApplyDrawWith', {
     method: 'POST',
     headers: {
       'Content-Type': 'application/json',
@@ -95,6 +140,42 @@
   );
 }
 
+/** 鑾峰彇鎻愮幇鐢宠璇︽儏 GET /api/ParkBountyApply/GetEnterpriseDrawWithDetail */
+export async function getEnterpriseDrawWithDetail(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIgetEnterpriseDrawWithDetailParams,
+  options?: API.RequestConfig
+) {
+  return request<API.GetEnterpriseDrawWithDetailOutput>(
+    '/api/ParkBountyApply/GetEnterpriseDrawWithDetail',
+    {
+      method: 'GET',
+      params: {
+        ...params,
+      },
+      ...(options || {}),
+    }
+  );
+}
+
+/** 鑾峰彇鎻愮幇鐢宠璁板綍鍒楄〃 POST /api/ParkBountyApply/GetEnterpriseDrawWithList */
+export async function getEnterpriseDrawWithList(
+  body: API.GetEnterpriseDrawWithListInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetEnterpriseDrawWithListOutputPageOutput>(
+    '/api/ParkBountyApply/GetEnterpriseDrawWithList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 鑾峰彇浼佷笟鏈�鍚庝竴娆′笂浼犵殑鍥尯鍏ラ┗鍗忚鏂囦欢 GET /api/ParkBountyApply/GetEnterpriseLastUploadEnterPactFile */
 export async function getEnterpriseLastUploadEnterPactFile(
   // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
@@ -110,6 +191,42 @@
   });
 }
 
+/** 鑾峰彇浼佷笟鏈�鍚庝竴娆′笂浼犵殑鍥尯鍏ラ┗鍗忚鏂囦欢 GET /api/ParkBountyApply/GetEnterpriseLastUploadEnterPactFileNew */
+export async function getEnterpriseLastUploadEnterPactFileNew(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIgetEnterpriseLastUploadEnterPactFileNewParams,
+  options?: API.RequestConfig
+) {
+  return request<API.CustomerUploadMonthApplyFileTypeDto[]>(
+    '/api/ParkBountyApply/GetEnterpriseLastUploadEnterPactFileNew',
+    {
+      method: 'GET',
+      params: {
+        ...params,
+      },
+      ...(options || {}),
+    }
+  );
+}
+
+/** 鑾峰彇鐢虫姤涓嬩紒涓氫笂浼犵殑鏂囦欢 POST /api/ParkBountyApply/GetEnterpriseParkApplyUploadFiles */
+export async function getEnterpriseParkApplyUploadFiles(
+  body: API.GetEnterpriseParkApplyUploadFilesInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetEnterpriseParkApplyUploadFileOutput[]>(
+    '/api/ParkBountyApply/GetEnterpriseParkApplyUploadFiles',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 鑾峰彇浼佷笟鍏呭�煎鏍稿垪琛� POST /api/ParkBountyApply/GetEnterprisePreChargeCheckList */
 export async function getEnterprisePreChargeCheckList(
   body: API.GetEnterprisePreChargeCheckListInput,
@@ -117,6 +234,21 @@
 ) {
   return request<API.GetEnterprisePreChargeCheckListOutputPageOutput>(
     '/api/ParkBountyApply/GetEnterprisePreChargeCheckList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
+/** 鑾峰彇鍏呭�艰褰曞垪琛� POST /api/ParkBountyApply/GetEnterprisePrechargeList */
+export async function getEnterprisePrechargeList(body: API.PageInput, options?: API.RequestConfig) {
+  return request<API.GetEnterprisePrechargeListOutputPageOutput>(
+    '/api/ParkBountyApply/GetEnterprisePrechargeList',
     {
       method: 'POST',
       headers: {
@@ -457,13 +589,49 @@
   );
 }
 
-/** 杩愯惀绔竴鍥尯瀹㈡埛绠$悊璇︽儏涓�濂栧姳閲戝彂鏀捐褰� POST /api/ParkBountyApply/GetParkCustomerBountyGrantList */
+/** 鎷ㄤ粯璁板綍 POST /api/ParkBountyApply/GetParkCustomerBountyFinanceList */
+export async function getParkCustomerBountyFinanceList(
+  body: API.QueryParkCustomerBountyApplyInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetParkCustomerBountyFinanceOutputPageOutput>(
+    '/api/ParkBountyApply/GetParkCustomerBountyFinanceList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
+/** 鍙戞斁璁板綍 POST /api/ParkBountyApply/GetParkCustomerBountyGrantList */
 export async function getParkCustomerBountyGrantList(
   body: API.QueryParkCustomerBountyApplyInput,
   options?: API.RequestConfig
 ) {
   return request<API.GetParkCustomerBountyGrantOutputPageOutput>(
     '/api/ParkBountyApply/GetParkCustomerBountyGrantList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
+/** 杩愯惀绔竴鍥尯瀹㈡埛绠$悊璇︽儏涓�濂栧姳閲戝彂鏀捐褰� POST /api/ParkBountyApply/GetParkCustomerBountySettleList */
+export async function getParkCustomerBountySettleList(
+  body: API.QueryParkCustomerBountyApplyInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetParkCustomerBountySettleOutputPageOutput>(
+    '/api/ParkBountyApply/GetParkCustomerBountySettleList',
     {
       method: 'POST',
       headers: {
@@ -491,6 +659,21 @@
       ...(options || {}),
     }
   );
+}
+
+/** 瀵煎叆濂栧姳閲戝叆璐� POST /api/ParkBountyApply/ImportParkBountyData */
+export async function importParkBountyData(
+  body: API.ImportBountyApplyDataInput,
+  options?: API.RequestConfig
+) {
+  return request<API.ImportBountyApplyDataOutput>('/api/ParkBountyApply/ImportParkBountyData', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
 }
 
 /** 鍐呴儴瀹℃牳 POST /api/ParkBountyApply/IncheckParkBountyApply */
@@ -568,6 +751,36 @@
   });
 }
 
+/** 鏀垮姟绔�斿鍔遍噾鍙戞斁鈥斾笂浼犺储鏀挎嫧浠樺嚟璇� POST /api/ParkBountyApply/ParkBountyApplyFinanceBill */
+export async function parkBountyApplyFinanceBill(
+  body: API.ParkBountyApplyFinanceFileInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/ParkBountyApplyFinanceBill', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 涓婁紶璐㈡斂鎷ㄤ粯鐧昏閲戦 POST /api/ParkBountyApply/ParkBountyApplyFinanceBillAmount */
+export async function parkBountyApplyFinanceBillAmount(
+  body: API.ParkBountyApplyFinanceFileInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/ParkBountyApplyFinanceBillAmount', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 璐㈡斂鍏ヨ处涓婁紶鍑瘉 POST /api/ParkBountyApply/ParkBountyApplyFinanceFile */
 export async function parkBountyApplyFinanceFile(
   body: API.ParkBountyApplyRechargeFileInput,
@@ -583,12 +796,27 @@
   });
 }
 
-/** 鏀垮姟绔�斿鍔遍噾鍙戞斁鈥斾笂浼犲嚟璇� POST /api/ParkBountyApply/ParkBountyApplySettle */
+/** 鏀垮姟绔�斿鍔遍噾鍙戞斁鈥斾笂浼犲厖鍊煎嚟璇� POST /api/ParkBountyApply/ParkBountyApplySettle */
 export async function parkBountyApplySettle(
   body: API.ParkBountyApplySettleInput,
   options?: API.RequestConfig
 ) {
   return request<number>('/api/ParkBountyApply/ParkBountyApplySettle', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 涓婁紶鍏呭�肩櫥璁伴噾棰� POST /api/ParkBountyApply/ParkBountyApplySettleAmount */
+export async function parkBountyApplySettleAmount(
+  body: API.ParkBountyApplySettleInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/ParkBountyApplySettleAmount', {
     method: 'POST',
     headers: {
       'Content-Type': 'application/json',
@@ -691,6 +919,24 @@
   );
 }
 
+/** 涓婁紶浼佷笟鏉愭枡 POST /api/ParkBountyApply/UploadParkBountyApplyCompanyFileNew */
+export async function uploadParkBountyApplyCompanyFileNew(
+  body: API.UploadParkApplyCustomerFilesInput,
+  options?: API.RequestConfig
+) {
+  return request<API.UploadParkBountyApplyCompanyFileOutput>(
+    '/api/ParkBountyApply/UploadParkBountyApplyCompanyFileNew',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 鐢ㄦ埛鍏呭�� POST /api/ParkBountyApply/UserEnterpiseRecharge */
 export async function userEnterpiseRecharge(
   body: API.UserEnterpiseRechargeInput,

--
Gitblit v1.9.1