| | |
| | | }); |
| | | } |
| | | |
| | | /** 运营端-奖励金统计报表导出 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 */ |
| | | export async function getCompanyNameList( |
| | | body: API.GetCompanyNameListInput, |
| | |
| | | ) { |
| | | return request<API.GetParkBountyApplyListOutputPageOutput>( |
| | | '/api/ParkBountyApply/GetCustmoerParkBountyApplyList', |
| | | { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | } |
| | | ); |
| | | } |
| | | |
| | | /** 奖励金统计报表--获取企业消费明细列表 POST /api/ParkBountyApply/GetEnterpriseConsumptionList */ |
| | | export async function getEnterpriseConsumptionList( |
| | | body: API.GetRewardsDetailsInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<API.GetEnterpriseConsumptionListOutputPageOutput>( |
| | | '/api/ParkBountyApply/GetEnterpriseConsumptionList', |
| | | { |
| | | method: 'POST', |
| | | headers: { |
| | |
| | | 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 || {}), |
| | | } |
| | | ); |
| | |
| | | ); |
| | | } |
| | | |
| | | /** 奖励金统计报表--获取平台拨付列表 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, |