| | |
| | | }); |
| | | } |
| | | |
| | | /** 奖励金-企业自身出账-审批 POST /api/ParkBountyApply/AuditParkBountyApplyTradeBySelf */ |
| | | export async function auditParkBountyApplyTradeBySelf( |
| | | body: API.AuditParkBountyTradeBySelfInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<number>('/api/ParkBountyApply/AuditParkBountyApplyTradeBySelf', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 奖励金-出账-财务审批 POST /api/ParkBountyApply/FinanceAuditParkBountyApplyTrade */ |
| | | export async function financeAuditParkBountyApplyTrade( |
| | | body: API.AuditParkBountyTradeInput, |
| | |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 奖励金-线下投保 企业自身提出出账申请 POST /api/ParkBountyApply/ParkBountyApplyTradeBySelf */ |
| | | export async function parkBountyApplyTradeBySelf( |
| | | body: API.CreateParkBountyTradeInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<number>('/api/ParkBountyApply/ParkBountyApplyTradeBySelf', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |