From 6250509f6dec599c11b68179cb33513e5d4b8a7d Mon Sep 17 00:00:00 2001
From: wupengfei <834520024@qq.com>
Date: 星期四, 23 十月 2025 13:49:53 +0800
Subject: [PATCH] fix: bug

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

diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts
index 44fb7c0..ae8882e 100644
--- a/src/services/api/ParkBountyApply.ts
+++ b/src/services/api/ParkBountyApply.ts
@@ -4,7 +4,7 @@
 
 /** 濂栧姳閲�-鍑鸿处 POST /api/ParkBountyApply/AuditParkBountyApplyTrade */
 export async function auditParkBountyApplyTrade(
-  body: API.AuditParkBountyTradeInput,
+  body: API.SyncAuditParkBountyTradeInput,
   options?: API.RequestConfig
 ) {
   return request<number>('/api/ParkBountyApply/AuditParkBountyApplyTrade', {
@@ -34,7 +34,7 @@
 
 /** 濂栧姳閲�-鍑鸿处-璐㈠姟瀹℃壒 POST /api/ParkBountyApply/FinanceAuditParkBountyApplyTrade */
 export async function financeAuditParkBountyApplyTrade(
-  body: API.AuditParkBountyTradeInput,
+  body: API.SyncFinanceAuditParkBountyTradeInput,
   options?: API.RequestConfig
 ) {
   return request<number>('/api/ParkBountyApply/FinanceAuditParkBountyApplyTrade', {
@@ -45,6 +45,39 @@
     data: body,
     ...(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 || {}),
+    }
+  );
+}
+
+/** 姝ゅ鍚庣娌℃湁鎻愪緵娉ㄩ噴 POST /api/ParkBountyApply/GetEnterprisePrechargeList */
+export async function getEnterprisePrechargeList(body: API.PageInput, options?: API.RequestConfig) {
+  return request<API.GetEnterprisePrechargeListOutputPageOutput>(
+    '/api/ParkBountyApply/GetEnterprisePrechargeList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
 }
 
 /** 杩愯惀绔�-濂栧姳杩涘嚭璐﹁鎯� POST /api/ParkBountyApply/GetParkBountyTradeDetailList */
@@ -83,6 +116,42 @@
   );
 }
 
+/** 姝ゅ鍚庣娌℃湁鎻愪緵娉ㄩ噴 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/GetParkCustomerBountySettleList */
+export async function getParkCustomerBountySettleList(
+  body: API.QueryParkCustomerBountyApplyInput,
+  options?: API.RequestConfig
+) {
+  return request<API.GetParkCustomerBountySettleOutputPageOutput>(
+    '/api/ParkBountyApply/GetParkCustomerBountySettleList',
+    {
+      method: 'POST',
+      headers: {
+        'Content-Type': 'application/json',
+      },
+      data: body,
+      ...(options || {}),
+    }
+  );
+}
+
 /** 杩愯惀绔�斿鍔遍噾-鍑鸿处 POST /api/ParkBountyApply/ParkBountyApplyTrade */
 export async function parkBountyApplyTrade(
   body: API.CreateParkBountyTradeInput,

--
Gitblit v1.9.1