From 2caafed814dbbaf0905e77db91ed7835d8d854d9 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期一, 16 六月 2025 13:08:37 +0800 Subject: [PATCH] fix: bug --- src/services/api/ParkBountyApply.ts | 36 ++++++++++++++++++++++++++++++++++++ 1 files changed, 36 insertions(+), 0 deletions(-) diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts index e75e6e9..e5828b4 100644 --- a/src/services/api/ParkBountyApply.ts +++ b/src/services/api/ParkBountyApply.ts @@ -607,6 +607,24 @@ ); } +/** 鍙戞斁璁板綍 POST /api/ParkBountyApply/GetParkCustomerBountyGrantList */ +export async function getParkCustomerBountyGrantList( + body: API.QueryParkCustomerBountyApplyInput, + options?: API.RequestConfig +) { + return request<API.GetParkCustomerBountyGrantOutputPageOutput>( + '/api/ParkBountyApply/GetParkCustomerBountyGrantList', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); +} + /** 杩愯惀绔竴鍥尯瀹㈡埛绠$悊璇︽儏涓�濂栧姳閲戝彂鏀捐褰� POST /api/ParkBountyApply/GetParkCustomerBountySettleList */ export async function getParkCustomerBountySettleList( body: API.QueryParkCustomerBountyApplyInput, @@ -883,6 +901,24 @@ }); } +/** 鍚屾濂栧姳閲戝嚭璐︿俊鎭� POST /api/ParkBountyApply/SyncParkBountyApplyTrade */ +export async function syncParkBountyApplyTrade( + body: API.CreateParkBountyTradeInput, + options?: API.RequestConfig +) { + return request<API.SyncParkBountyApplyTradeOutput>( + '/api/ParkBountyApply/SyncParkBountyApplyTrade', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); +} + /** 涓婁紶浼佷笟鏉愭枡 POST /api/ParkBountyApply/UploadParkBountyApplyCompanyFile */ export async function uploadParkBountyApplyCompanyFile( body: API.UploadParkBountyApplyCompanyFileInput, -- Gitblit v1.9.1