From 7c24e02dd40f435aa036d4f3932e72f193441d06 Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期五, 18 四月 2025 17:34:42 +0800
Subject: [PATCH] feat: 页面

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

diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts
index 96d1b8a..c52ac11 100644
--- a/src/services/api/ParkBountyApply.ts
+++ b/src/services/api/ParkBountyApply.ts
@@ -32,6 +32,21 @@
   });
 }
 
+/** 棰勫厖鍊煎鏍� POST /api/ParkBountyApply/CheckUserEnterpriseRecharge */
+export async function checkUserEnterpriseRecharge(
+  body: API.CheckUserEnterpriseRechargeInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/CheckUserEnterpriseRecharge', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 缁х画鐢虫姤 POST /api/ParkBountyApply/EditParkBountyApply */
 export async function editParkBountyApply(
   body: API.EditParkBountyApplyStepOneInput,
@@ -75,6 +90,42 @@
         'Content-Type': 'application/json',
       },
       data: body,
+      ...(options || {}),
+    }
+  );
+}
+
+/** 鑾峰彇浼佷笟鍏呭�煎鏍稿垪琛� POST /api/ParkBountyApply/GetEnterprisePreChargeCheckList */
+export async function getEnterprisePreChargeCheckList(
+  body: API.GetEnterprisePreChargeCheckListInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetEnterprisePreChargeCheckListOutputPageOutput>(
+    '/api/ParkBountyApply/GetEnterprisePreChargeCheckList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
+/** 鑾峰彇棰勫厖鍊艰鎯� GET /api/ParkBountyApply/GetEnterpriseRechargeDetail */
+export async function getEnterpriseRechargeDetail(
+  // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
+  params: API.APIgetEnterpriseRechargeDetailParams,
+  options?: API.RequestConfig
+) {
+  return request<API.GetEnterpriseRechargeDetail>(
+    '/api/ParkBountyApply/GetEnterpriseRechargeDetail',
+    {
+      method: 'GET',
+      params: {
+        ...params,
+      },
       ...(options || {}),
     }
   );
@@ -439,12 +490,57 @@
   });
 }
 
+/** 鎵归噺璐㈡斂鍏ヨ处 POST /api/ParkBountyApply/ParkBountyApplyBatchFinance */
+export async function parkBountyApplyBatchFinance(
+  body: API.ParkBountyApplyBatchFinanceInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/ParkBountyApplyBatchFinance', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 杩愯惀绔�斿叆璐�-鎵归噺鍏ヨ处 POST /api/ParkBountyApply/ParkBountyApplyBatchTransfer */
 export async function parkBountyApplyBatchTransfer(
   body: API.ParkBountyApplyBatchTransferInput,
   options?: API.RequestConfig
 ) {
   return request<number>('/api/ParkBountyApply/ParkBountyApplyBatchTransfer', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 璐㈡斂鍏ヨ处 POST /api/ParkBountyApply/ParkBountyApplyFinance */
+export async function parkBountyApplyFinance(
+  body: API.ParkBountyApplyRechargeInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/ParkBountyApplyFinance', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
+/** 璐㈡斂鍏ヨ处涓婁紶鍑瘉 POST /api/ParkBountyApply/ParkBountyApplyFinanceFile */
+export async function parkBountyApplyFinanceFile(
+  body: API.ParkBountyApplyRechargeFileInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/ParkBountyApplyFinanceFile', {
     method: 'POST',
     headers: {
       'Content-Type': 'application/json',
@@ -561,3 +657,18 @@
     }
   );
 }
+
+/** 鐢ㄦ埛鍏呭�� POST /api/ParkBountyApply/UserEnterpiseRecharge */
+export async function userEnterpiseRecharge(
+  body: API.UserEnterpiseRechargeInput,
+  options?: API.RequestConfig
+) {
+  return request<number>('/api/ParkBountyApply/UserEnterpiseRecharge', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}

--
Gitblit v1.9.1