From 6bac509f8e6efc205d9f37a84c9b019ec828467a Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期三, 07 五月 2025 14:22:26 +0800 Subject: [PATCH] feat: 接口 --- src/services/api/ParkReward.ts | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/services/api/ParkReward.ts b/src/services/api/ParkReward.ts index 45e5177..f00c706 100644 --- a/src/services/api/ParkReward.ts +++ b/src/services/api/ParkReward.ts @@ -95,6 +95,24 @@ }); } +/** 杩愯惀绔竴鍥尯瀹㈡埛绠$悊璇︽儏涓�濂栧姳閲戞秷璐硅褰� POST /api/ParkReward/GetParkCustomerBountyConsumptionList */ +export async function getParkCustomerBountyConsumptionList( + body: API.QueryParkCustomerBountyApplyInput, + options?: API.RequestConfig +) { + return request<API.GetParkCustomerBountyConsumptionOutputPageOutput>( + '/api/ParkReward/GetParkCustomerBountyConsumptionList', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); +} + /** 鑾峰彇濂栧姳鐢宠璺熻釜鍒楄〃 POST /api/ParkReward/GetParkRewardApplyFollowList */ export async function getParkRewardApplyFollowList( body: API.GetParkRewardApplyFollowInput, -- Gitblit v1.9.1