From f633483b97b38c2965ecdbffcb80e4e297175a43 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期一, 28 七月 2025 18:54:19 +0800 Subject: [PATCH] fix: 奖励金审核 --- src/services/api/ParkBountyApply.ts | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts index daa29dd..a85c998 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榛樿娌℃湁鐢熸垚瀵硅薄) -- Gitblit v1.9.1