| | |
| | | }); |
| | | } |
| | | |
| | | /** 企业自主申报 POST /api/ParkBountyApply/AddParkBountyApplyByEnterprise */ |
| | | export async function addParkBountyApplyByEnterprise( |
| | | body: API.AddParkBountyApplyByEnterpriseInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<string>('/api/ParkBountyApply/AddParkBountyApplyByEnterprise', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 奖励金-出账-审批 POST /api/ParkBountyApply/AuditParkBountyApplyTrade */ |
| | | export async function auditParkBountyApplyTrade( |
| | | body: API.AuditParkBountyTradeInput, |
| | |
| | | ); |
| | | } |
| | | |
| | | /** 查询奖励金统计报表 GET /api/ParkBountyApply/GetRewardStatisticsMonths */ |
| | | export async function getRewardStatisticsMonths( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | | params: API.APIgetRewardStatisticsMonthsParams, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<string[]>('/api/ParkBountyApply/GetRewardStatisticsMonths', { |
| | | method: 'GET', |
| | | params: { |
| | | ...params, |
| | | }, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 导入奖励金申报财政/平台拨付总额 POST /api/ParkBountyApply/ImportParkBountyAppalyAmount */ |
| | | export async function importParkBountyAppalyAmount( |
| | | body: API.ImportParkBountyAppalyAmountInput, |