From ccc59ace343de3ecdf2ca7c4d82966faaf3b32e7 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期五, 14 十一月 2025 19:58:50 +0800
Subject: [PATCH] fix: bug

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

diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts
index fdbd9c9..978cf23 100644
--- a/src/services/api/ParkBountyApply.ts
+++ b/src/services/api/ParkBountyApply.ts
@@ -17,6 +17,21 @@
   });
 }
 
+/** 浼佷笟鑷富鐢虫姤 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,
@@ -775,6 +790,21 @@
   );
 }
 
+/** 瀵煎嚭鍥尯瀹㈡埛绠$悊鍒楄〃 POST /api/ParkBountyApply/GetParkCustomerManagePageNewExport */
+export async function getParkCustomerManagePageNewExport(
+  body: API.QueryParkCustomerManageInput,
+  options?: API.RequestConfig
+) {
+  return request<any>('/api/ParkBountyApply/GetParkCustomerManagePageNewExport', {
+    method: 'POST',
+    headers: {
+      'Content-Type': 'application/json',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鏌ヨ濂栧姳閲戠粺璁℃姤琛� POST /api/ParkBountyApply/GetRewardStatistics */
 export async function getRewardStatistics(
   body: API.GetRewardStatisticsInput,
@@ -808,6 +838,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,

--
Gitblit v1.9.1