From 6fd420d0f3386047bad0113bf5714267aade2fd4 Mon Sep 17 00:00:00 2001 From: wupengfei <834520024@qq.com> Date: 星期一, 21 七月 2025 09:33:20 +0800 Subject: [PATCH] Merge branch 'master' into dev-3.4.2.5 --- src/services/api/ParkBountyApply.ts | 454 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 452 insertions(+), 2 deletions(-) diff --git a/src/services/api/ParkBountyApply.ts b/src/services/api/ParkBountyApply.ts index c52ac11..1ebaf72 100644 --- a/src/services/api/ParkBountyApply.ts +++ b/src/services/api/ParkBountyApply.ts @@ -17,6 +17,21 @@ }); } +/** 濂栧姳閲�-鍑鸿处 POST /api/ParkBountyApply/AuditParkBountyApplyTrade */ +export async function auditParkBountyApplyTrade( + body: API.AuditParkBountyTradeInput, + options?: API.RequestConfig +) { + return request<number>('/api/ParkBountyApply/AuditParkBountyApplyTrade', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }); +} + /** 鎾ゅ洖鐢虫姤 GET /api/ParkBountyApply/CancelParkBountyApply */ export async function cancelParkBountyApply( // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄) @@ -28,6 +43,21 @@ params: { ...params, }, + ...(options || {}), + }); +} + +/** 鎻愮幇瀹℃牳 POST /api/ParkBountyApply/CheckEnterpriseApplyDrawWith */ +export async function checkEnterpriseApplyDrawWith( + body: API.CheckEnterpriseApplyDrawWithInput, + options?: API.RequestConfig +) { + return request<number>('/api/ParkBountyApply/CheckEnterpriseApplyDrawWith', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, ...(options || {}), }); } @@ -47,6 +77,21 @@ }); } +/** 姝ゅ鍚庣娌℃湁鎻愪緵娉ㄩ噴 GET /api/ParkBountyApply/DeleteParkEnterpriseApplyFile */ +export async function deleteParkEnterpriseApplyFile( + // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄) + params: API.APIdeleteParkEnterpriseApplyFileParams, + options?: API.RequestConfig +) { + return request<number>('/api/ParkBountyApply/DeleteParkEnterpriseApplyFile', { + method: 'GET', + params: { + ...params, + }, + ...(options || {}), + }); +} + /** 缁х画鐢虫姤 POST /api/ParkBountyApply/EditParkBountyApply */ export async function editParkBountyApply( body: API.EditParkBountyApplyStepOneInput, @@ -60,6 +105,54 @@ data: body, ...(options || {}), }); +} + +/** 瀹㈡埛绔�-鐢宠鎻愮幇 POST /api/ParkBountyApply/EnterpriseApplyDrawWith */ +export async function enterpriseApplyDrawWith( + body: API.EnterpriseApplyDrawWithInput, + options?: API.RequestConfig +) { + return request<number>('/api/ParkBountyApply/EnterpriseApplyDrawWith', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }); +} + +/** 杩愯惀绔�-濂栧姳閲戠粺璁℃姤琛ㄥ鍑� POST /api/ParkBountyApply/ExportBonusStatistics */ +export async function exportBonusStatistics( + body: API.GetBonusStatisticsListInput, + options?: API.RequestConfig +) { + return request<any>('/api/ParkBountyApply/ExportBonusStatistics', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }); +} + +/** 杩愯惀绔�-濂栧姳閲戠粺璁℃姤琛� POST /api/ParkBountyApply/GetBonusStatisticsList */ +export async function getBonusStatisticsList( + body: API.GetBonusStatisticsListInput, + options?: API.RequestConfig +) { + return request<API.GetBonusStatisticsListOutputPageOutput>( + '/api/ParkBountyApply/GetBonusStatisticsList', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); } /** 鑾峰彇鍙�夋嫨鍏徃鍜屽凡鍓旈櫎鍏徃 POST /api/ParkBountyApply/GetCompanyNameList */ @@ -95,6 +188,111 @@ ); } +/** 濂栧姳閲戠粺璁℃姤琛�--鑾峰彇浼佷笟娑堣垂鏄庣粏鍒楄〃 POST /api/ParkBountyApply/GetEnterpriseConsumptionList */ +export async function getEnterpriseConsumptionList( + body: API.GetRewardsDetailsInput, + options?: API.RequestConfig +) { + return request<API.GetEnterpriseConsumptionListOutputPageOutput>( + '/api/ParkBountyApply/GetEnterpriseConsumptionList', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); +} + +/** 鑾峰彇鎻愮幇鐢宠璇︽儏 GET /api/ParkBountyApply/GetEnterpriseDrawWithDetail */ +export async function getEnterpriseDrawWithDetail( + // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄) + params: API.APIgetEnterpriseDrawWithDetailParams, + options?: API.RequestConfig +) { + return request<API.GetEnterpriseDrawWithDetailOutput>( + '/api/ParkBountyApply/GetEnterpriseDrawWithDetail', + { + method: 'GET', + params: { + ...params, + }, + ...(options || {}), + } + ); +} + +/** 鑾峰彇鎻愮幇鐢宠璁板綍鍒楄〃 POST /api/ParkBountyApply/GetEnterpriseDrawWithList */ +export async function getEnterpriseDrawWithList( + body: API.GetEnterpriseDrawWithListInput, + options?: API.RequestConfig +) { + return request<API.GetEnterpriseDrawWithListOutputPageOutput>( + '/api/ParkBountyApply/GetEnterpriseDrawWithList', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); +} + +/** 鑾峰彇浼佷笟鏈�鍚庝竴娆′笂浼犵殑鍥尯鍏ラ┗鍗忚鏂囦欢 GET /api/ParkBountyApply/GetEnterpriseLastUploadEnterPactFile */ +export async function getEnterpriseLastUploadEnterPactFile( + // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄) + params: API.APIgetEnterpriseLastUploadEnterPactFileParams, + options?: API.RequestConfig +) { + return request<string>('/api/ParkBountyApply/GetEnterpriseLastUploadEnterPactFile', { + method: 'GET', + params: { + ...params, + }, + ...(options || {}), + }); +} + +/** 鑾峰彇浼佷笟鏈�鍚庝竴娆′笂浼犵殑鍥尯鍏ラ┗鍗忚鏂囦欢 GET /api/ParkBountyApply/GetEnterpriseLastUploadEnterPactFileNew */ +export async function getEnterpriseLastUploadEnterPactFileNew( + // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄) + params: API.APIgetEnterpriseLastUploadEnterPactFileNewParams, + options?: API.RequestConfig +) { + return request<API.CustomerUploadMonthApplyFileTypeDto[]>( + '/api/ParkBountyApply/GetEnterpriseLastUploadEnterPactFileNew', + { + method: 'GET', + params: { + ...params, + }, + ...(options || {}), + } + ); +} + +/** 鑾峰彇鐢虫姤涓嬩紒涓氫笂浼犵殑鏂囦欢 POST /api/ParkBountyApply/GetEnterpriseParkApplyUploadFiles */ +export async function getEnterpriseParkApplyUploadFiles( + body: API.GetEnterpriseParkApplyUploadFilesInput, + options?: API.RequestConfig +) { + return request<API.GetEnterpriseParkApplyUploadFileOutput[]>( + '/api/ParkBountyApply/GetEnterpriseParkApplyUploadFiles', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); +} + /** 鑾峰彇浼佷笟鍏呭�煎鏍稿垪琛� POST /api/ParkBountyApply/GetEnterprisePreChargeCheckList */ export async function getEnterprisePreChargeCheckList( body: API.GetEnterprisePreChargeCheckListInput, @@ -102,6 +300,21 @@ ) { return request<API.GetEnterprisePreChargeCheckListOutputPageOutput>( '/api/ParkBountyApply/GetEnterprisePreChargeCheckList', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); +} + +/** 鑾峰彇鍏呭�艰褰曞垪琛� POST /api/ParkBountyApply/GetEnterprisePrechargeList */ +export async function getEnterprisePrechargeList(body: API.PageInput, options?: API.RequestConfig) { + return request<API.GetEnterprisePrechargeListOutputPageOutput>( + '/api/ParkBountyApply/GetEnterprisePrechargeList', { method: 'POST', headers: { @@ -126,6 +339,60 @@ params: { ...params, }, + ...(options || {}), + } + ); +} + +/** 杩愯惀绔�-濂栧姳閲戣幏鍙栦紒涓氬厖鍊兼槑缁嗗垪琛� POST /api/ParkBountyApply/GetEnterpriseRechargeList */ +export async function getEnterpriseRechargeList( + body: API.GetRewardsDetailsInput, + options?: API.RequestConfig +) { + return request<API.GetEnterpriseRechargeListOutputPageOutput>( + '/api/ParkBountyApply/GetEnterpriseRechargeList', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); +} + +/** 濂栧姳閲戠粺璁℃姤琛�--鑾峰彇鎻愮幇鏄庣粏鍒楄〃 POST /api/ParkBountyApply/GetEnterpriseWithdrawList */ +export async function getEnterpriseWithdrawList( + body: API.GetRewardsDetailsInput, + options?: API.RequestConfig +) { + return request<API.GetEnterpriseDrawWithOutputPageOutput>( + '/api/ParkBountyApply/GetEnterpriseWithdrawList', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); +} + +/** 濂栧姳閲戠粺璁℃姤琛�--鑾峰彇璐㈡斂鎷ㄤ粯鍒楄〃 POST /api/ParkBountyApply/GetFiscalAllocationList */ +export async function getFiscalAllocationList( + body: API.GetRewardsDetailsInput, + options?: API.RequestConfig +) { + return request<API.GetFiscalAllocationOutputPageOutput>( + '/api/ParkBountyApply/GetFiscalAllocationList', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, ...(options || {}), } ); @@ -242,6 +509,24 @@ 'Content-Type': 'application/json', }, data: body, + ...(options || {}), + } + ); +} + +/** 鑾峰彇鎵归噺鍏ヨ处涓湭璐㈡斂鎷ㄤ粯鐨勪紒涓� GET /api/ParkBountyApply/GetParkBountyApplyBatchFinanceEnterprise */ +export async function getParkBountyApplyBatchFinanceEnterprise( + // 鍙犲姞鐢熸垚鐨凱aram绫诲瀷 (闈瀊ody鍙傛暟swagger榛樿娌℃湁鐢熸垚瀵硅薄) + params: API.APIgetParkBountyApplyBatchFinanceEnterpriseParams, + options?: API.RequestConfig +) { + return request<API.GetNotTransferCompanyNameListOutput[]>( + '/api/ParkBountyApply/GetParkBountyApplyBatchFinanceEnterprise', + { + method: 'GET', + params: { + ...params, + }, ...(options || {}), } ); @@ -424,13 +709,49 @@ ); } -/** 杩愯惀绔竴鍥尯瀹㈡埛绠$悊璇︽儏涓�濂栧姳閲戝彂鏀捐褰� POST /api/ParkBountyApply/GetParkCustomerBountyGrantList */ +/** 鎷ㄤ粯璁板綍 POST /api/ParkBountyApply/GetParkCustomerBountyFinanceList */ +export async function getParkCustomerBountyFinanceList( + body: API.QueryParkCustomerBountyApplyInput, + options?: API.RequestConfig +) { + return request<API.GetParkCustomerBountyFinanceOutputPageOutput>( + '/api/ParkBountyApply/GetParkCustomerBountyFinanceList', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); +} + +/** 鍙戞斁璁板綍 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, + options?: API.RequestConfig +) { + return request<API.GetParkCustomerBountySettleOutputPageOutput>( + '/api/ParkBountyApply/GetParkCustomerBountySettleList', { method: 'POST', headers: { @@ -458,6 +779,54 @@ ...(options || {}), } ); +} + +/** 濂栧姳閲戠粺璁℃姤琛�--鑾峰彇骞冲彴鎷ㄤ粯鍒楄〃 POST /api/ParkBountyApply/GetPlatformAllocationList */ +export async function getPlatformAllocationList( + body: API.GetRewardsDetailsInput, + options?: API.RequestConfig +) { + return request<API.GetPlatformAllocationOutputPageOutput>( + '/api/ParkBountyApply/GetPlatformAllocationList', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); +} + +/** 濂栧姳閲戞姤琛�--浣欓鍒楄〃 POST /api/ParkBountyApply/GetRemainAmountList */ +export async function getRemainAmountList( + body: API.GetRewardsDetailsInput, + options?: API.RequestConfig +) { + return request<API.GetRemainAmountOutput>('/api/ParkBountyApply/GetRemainAmountList', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }); +} + +/** 瀵煎叆濂栧姳閲戝叆璐� 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 */ @@ -535,6 +904,36 @@ }); } +/** 鏀垮姟绔�斿鍔遍噾鍙戞斁鈥斾笂浼犺储鏀挎嫧浠樺嚟璇� 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/ParkBountyApplyFinanceBillAmount */ +export async function parkBountyApplyFinanceBillAmount( + body: API.ParkBountyApplyFinanceFileInput, + options?: API.RequestConfig +) { + return request<number>('/api/ParkBountyApply/ParkBountyApplyFinanceBillAmount', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }); +} + /** 璐㈡斂鍏ヨ处涓婁紶鍑瘉 POST /api/ParkBountyApply/ParkBountyApplyFinanceFile */ export async function parkBountyApplyFinanceFile( body: API.ParkBountyApplyRechargeFileInput, @@ -550,12 +949,27 @@ }); } -/** 鏀垮姟绔�斿鍔遍噾鍙戞斁鈥斾笂浼犲嚟璇� POST /api/ParkBountyApply/ParkBountyApplySettle */ +/** 鏀垮姟绔�斿鍔遍噾鍙戞斁鈥斾笂浼犲厖鍊煎嚟璇� POST /api/ParkBountyApply/ParkBountyApplySettle */ export async function parkBountyApplySettle( body: API.ParkBountyApplySettleInput, options?: API.RequestConfig ) { return request<number>('/api/ParkBountyApply/ParkBountyApplySettle', { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + }); +} + +/** 涓婁紶鍏呭�肩櫥璁伴噾棰� POST /api/ParkBountyApply/ParkBountyApplySettleAmount */ +export async function parkBountyApplySettleAmount( + body: API.ParkBountyApplySettleInput, + options?: API.RequestConfig +) { + return request<number>('/api/ParkBountyApply/ParkBountyApplySettleAmount', { method: 'POST', headers: { 'Content-Type': 'application/json', @@ -640,6 +1054,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, @@ -658,6 +1090,24 @@ ); } +/** 涓婁紶浼佷笟鏉愭枡 POST /api/ParkBountyApply/UploadParkBountyApplyCompanyFileNew */ +export async function uploadParkBountyApplyCompanyFileNew( + body: API.UploadParkApplyCustomerFilesInput, + options?: API.RequestConfig +) { + return request<API.UploadParkBountyApplyCompanyFileOutput>( + '/api/ParkBountyApply/UploadParkBountyApplyCompanyFileNew', + { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + data: body, + ...(options || {}), + } + ); +} + /** 鐢ㄦ埛鍏呭�� POST /api/ParkBountyApply/UserEnterpiseRecharge */ export async function userEnterpiseRecharge( body: API.UserEnterpiseRechargeInput, -- Gitblit v1.9.1