| | |
| | | // @ts-ignore |
| | | import { request } from '@/utils/request'; |
| | | |
| | | /** 批量引用企业资料 GET /api/EnterpriseApplyFile/BatchQuoteEnterpriseApplyFile */ |
| | | export async function batchQuoteEnterpriseApplyFile( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | | params: API.APIbatchQuoteEnterpriseApplyFileParams, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<number>('/api/EnterpriseApplyFile/BatchQuoteEnterpriseApplyFile', { |
| | | method: 'GET', |
| | | params: { |
| | | ...params, |
| | | }, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 确认提交材料上传 POST /api/EnterpriseApplyFile/CustomerUploadMonthApplyFile */ |
| | | export async function customerUploadMonthApplyFile( |
| | | body: API.CustomerUploadMonthApplyFileInput, |