From 1b0bbe7fbe3d62779356f0729f086ceb3901e17b Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期三, 09 四月 2025 16:39:18 +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