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 | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts index fbeb4ac..e5828b4 100644 --- a/src/services/api/ParkBountyApply.ts +++ b/src/services/api/ParkBountyApply.ts @@ -901,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