From 782da0949237a872d285368f2e93f0bcd5aa64ef Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期四, 24 四月 2025 16:36:14 +0800 Subject: [PATCH] fix: bug --- src/services/api/ParkReward.ts | 36 ++++++++++++++++++++++++++++++++++++ 1 files changed, 36 insertions(+), 0 deletions(-) diff --git a/src/services/api/ParkReward.ts b/src/services/api/ParkReward.ts index 41bf2af..f00c706 100644 --- a/src/services/api/ParkReward.ts +++ b/src/services/api/ParkReward.ts @@ -62,6 +62,24 @@ }); } +/** 鑾峰彇浼佷笟濂栧姳閲戞祦姘� POST /api/ParkReward/GetEnterpriseBuntyTradeList */ +export async function getEnterpriseBuntyTradeList( + body: API.PageInput, + options?: API.RequestConfig +) { + return request<API.GetEnterpriseBuntyTradeDtoPageOutput>( + '/api/ParkReward/GetEnterpriseBuntyTradeList', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); +} + /** 鑾峰彇鏈�鏂板鍔辩敵璇蜂俊鎭� GET /api/ParkReward/GetNewestParkRewardApplyInfo */ export async function getNewestParkRewardApplyInfo( // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄) @@ -77,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