| | |
| | | ); |
| | | } |
| | | |
| | | /** 导入奖励金入账 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 */ |
| | | export async function incheckParkBountyApply( |
| | | body: API.IncheckParkBountyApplyInput, |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 政务端—奖励金发放—上传财政拨付凭证 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/ParkBountyApplyFinanceFile */ |
| | | export async function parkBountyApplyFinanceFile( |
| | | body: API.ParkBountyApplyRechargeFileInput, |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 政务端—奖励金发放—上传凭证 POST /api/ParkBountyApply/ParkBountyApplySettle */ |
| | | /** 政务端—奖励金发放—上传充值凭证 POST /api/ParkBountyApply/ParkBountyApplySettle */ |
| | | export async function parkBountyApplySettle( |
| | | body: API.ParkBountyApplySettleInput, |
| | | options?: API.RequestConfig |