From 27f846dc2415f9a962c09e45b5447ad0f9106e2b Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 16 十月 2025 17:07:03 +0800
Subject: [PATCH] fix: s

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

diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts
index daa29dd..fd6e378 100644
--- a/src/services/api/ParkBountyApply.ts
+++ b/src/services/api/ParkBountyApply.ts
@@ -32,6 +32,21 @@
   });
 }
 
+/** 鐢熸垚濂栧姳閲戠粺璁℃姤琛� 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',
+    },
+    data: body,
+    ...(options || {}),
+  });
+}
+
 /** 鎾ゅ洖鐢虫姤 GET /api/ParkBountyApply/CancelParkBountyApply */
 export async function cancelParkBountyApply(
   // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄)
@@ -1116,6 +1131,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,

--
Gitblit v1.9.1