From f633483b97b38c2965ecdbffcb80e4e297175a43 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期一, 28 七月 2025 18:54:19 +0800 Subject: [PATCH] fix: 奖励金审核 --- src/services/api/ParkBountyApply.ts | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 59 insertions(+), 0 deletions(-) diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts index 39dd756..a85c998 100644 --- a/src/services/api/ParkBountyApply.ts +++ b/src/services/api/ParkBountyApply.ts @@ -32,6 +32,21 @@ }); } +/** 鐢熸垚濂栧姳閲戠粺璁℃姤琛� POST /api/ParkBountyApply/BuildRewardStatistics */ +export async function buildRewardStatistics( + body: API.BuildRewardStatisticsInput, + options?: API.RequestConfig +) { + return request<any>('/api/ParkBountyApply/BuildRewardStatistics', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }); +} + /** 鎾ゅ洖鐢虫姤 GET /api/ParkBountyApply/CancelParkBountyApply */ export async function cancelParkBountyApply( // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄) @@ -457,6 +472,24 @@ ); } +/** 鑾峰彇鎵归噺鐧昏涓湭璐㈡斂鎷ㄤ粯鐨勪紒涓� GET /api/ParkBountyApply/GetParkBountyApplyBatchFinanceRegEnterprise */ +export async function getParkBountyApplyBatchFinanceRegEnterprise( + // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄) + params: API.APIgetParkBountyApplyBatchFinanceRegEnterpriseParams, + options?: API.RequestConfig +) { + return request<API.GetNotTransferCompanyNameListOutput[]>( + '/api/ParkBountyApply/GetParkBountyApplyBatchFinanceRegEnterprise', + { + method: 'GET', + params: { + ...params, + }, + ...(options || {}), + } + ); +} + /** 杩愯惀绔�-濂栧姳閲戝彂鏀�-鍏ヨ处-鑾峰彇鎵归噺鍏ヨ处涓湭鍏ヨ处鐨勪紒涓� GET /api/ParkBountyApply/GetParkBountyApplyBatchTransferEnterprise */ export async function getParkBountyApplyBatchTransferEnterprise( // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄) @@ -465,6 +498,24 @@ ) { return request<API.GetNotTransferCompanyNameListOutput[]>( '/api/ParkBountyApply/GetParkBountyApplyBatchTransferEnterprise', + { + method: 'GET', + params: { + ...params, + }, + ...(options || {}), + } + ); +} + +/** 鑾峰彇鎵归噺鐧昏涓湭鐧昏鐨勪紒涓� GET /api/ParkBountyApply/GetParkBountyApplyBatchTransferRegEnterprise */ +export async function getParkBountyApplyBatchTransferRegEnterprise( + // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄) + params: API.APIgetParkBountyApplyBatchTransferRegEnterpriseParams, + options?: API.RequestConfig +) { + return request<API.GetNotTransferCompanyNameListOutput[]>( + '/api/ParkBountyApply/GetParkBountyApplyBatchTransferRegEnterprise', { method: 'GET', params: { @@ -1042,6 +1093,14 @@ }); } +/** 淇鏁版嵁3.4.2.6 POST /api/ParkBountyApply/RepairData3_4_2_6 */ +export async function repairData3426(options?: API.RequestConfig) { + return request<any>('/api/ParkBountyApply/RepairData3_4_2_6', { + method: 'POST', + ...(options || {}), + }); +} + /** 淇濆瓨濂栭噾鍒嗛厤琛ㄣ�佸鍔遍噾姹囨�昏〃銆佸鍔辨�婚 POST /api/ParkBountyApply/SaveParkBountyApplyCollectFile */ export async function saveParkBountyApplyCollectFile( body: API.SaveParkBountyApplyCollectFileInput, -- Gitblit v1.9.1