| | |
| | | ); |
| | | } |
| | | |
| | | /** 获取园区汇总材料类型 POST /api/EnterpriseApplyFile/GetParkCollectFileTypeList */ |
| | | export async function getParkCollectFileTypeList( |
| | | body: API.GetParkCollectFileTypeListInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<API.GetCustomerUploadApplyFilesOutput[]>( |
| | | '/api/EnterpriseApplyFile/GetParkCollectFileTypeList', |
| | | { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | } |
| | | ); |
| | | } |
| | | |
| | | /** 上传材料详情-编辑-上传文件 POST /api/EnterpriseApplyFile/UploadMonthApplySingleFiles */ |
| | | export async function uploadMonthApplySingleFiles( |
| | | body: API.UploadMonthApplySingleFilesInput, |