| | |
| | | }); |
| | | } |
| | | |
| | | /** 生成奖励金统计报表 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( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |