From e944883d021a71da57b3f6c7ce7101c2bcc31b90 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期三, 23 四月 2025 09:14:27 +0800 Subject: [PATCH] feat: 接口 --- src/services/api/ParkBountyApply.ts | 32 +++++++++++++++++++++++++++++++- 1 files changed, 31 insertions(+), 1 deletions(-) diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts index 908a4cd..58e1366 100644 --- a/src/services/api/ParkBountyApply.ts +++ b/src/services/api/ParkBountyApply.ts @@ -493,6 +493,21 @@ ); } +/** 瀵煎叆濂栧姳閲戝叆璐� POST /api/ParkBountyApply/ImportParkBountyData */ +export async function importParkBountyData( + body: API.ImportBountyApplyDataInput, + options?: API.RequestConfig +) { + return request<API.ImportBountyApplyDataOutput>('/api/ParkBountyApply/ImportParkBountyData', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }); +} + /** 鍐呴儴瀹℃牳 POST /api/ParkBountyApply/IncheckParkBountyApply */ export async function incheckParkBountyApply( body: API.IncheckParkBountyApplyInput, @@ -568,6 +583,21 @@ }); } +/** 鏀垮姟绔�斿鍔遍噾鍙戞斁鈥斾笂浼犺储鏀挎嫧浠樺嚟璇� POST /api/ParkBountyApply/ParkBountyApplyFinanceBill */ +export async function parkBountyApplyFinanceBill( + body: API.ParkBountyApplyFinanceFileInput, + options?: API.RequestConfig +) { + return request<number>('/api/ParkBountyApply/ParkBountyApplyFinanceBill', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }); +} + /** 璐㈡斂鍏ヨ处涓婁紶鍑瘉 POST /api/ParkBountyApply/ParkBountyApplyFinanceFile */ export async function parkBountyApplyFinanceFile( body: API.ParkBountyApplyRechargeFileInput, @@ -583,7 +613,7 @@ }); } -/** 鏀垮姟绔�斿鍔遍噾鍙戞斁鈥斾笂浼犲嚟璇� POST /api/ParkBountyApply/ParkBountyApplySettle */ +/** 鏀垮姟绔�斿鍔遍噾鍙戞斁鈥斾笂浼犲厖鍊煎嚟璇� POST /api/ParkBountyApply/ParkBountyApplySettle */ export async function parkBountyApplySettle( body: API.ParkBountyApplySettleInput, options?: API.RequestConfig -- Gitblit v1.9.1