| | |
| | | }); |
| | | } |
| | | |
| | | /** 此处后端没有提供注释 POST /api/InsuranceOrder/Demo */ |
| | | export async function demo(options?: API.RequestConfig) { |
| | | return request<any>('/api/InsuranceOrder/Demo', { |
| | | method: 'POST', |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 此处后端没有提供注释 POST /api/InsuranceOrder/Demo2 */ |
| | | export async function demo2(options?: API.RequestConfig) { |
| | | return request<any>('/api/InsuranceOrder/Demo2', { |
| | | method: 'POST', |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 批量减员保单数据 POST /api/InsuranceOrder/DownsizingInsuranceOrderData */ |
| | | export async function downsizingInsuranceOrderData( |
| | | body: API.DownsizingInsuranceOrderData, |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 获取保单支付信息 GET /api/InsuranceOrder/GetInsurancePolicyPay */ |
| | | export async function getInsurancePolicyPay( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | | params: API.APIgetInsurancePolicyPayParams, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<API.InsurancePolicyPayDto[]>('/api/InsuranceOrder/GetInsurancePolicyPay', { |
| | | method: 'GET', |
| | | params: { |
| | | ...params, |
| | | }, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 获取盖章文件 GET /api/InsuranceOrder/GetInsurancePolicyStampFiles */ |
| | | export async function getInsurancePolicyStampFiles( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 获取发票 POST /api/InsuranceOrder/GetInvoice/${param0} */ |
| | | export async function getInvoiceId( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | | params: API.APIgetInvoiceIdParams, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | const { id: param0, ...queryParams } = params; |
| | | return request<any>(`/api/InsuranceOrder/GetInvoice/${param0}`, { |
| | | method: 'POST', |
| | | params: { ...queryParams }, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 投保详情-导入人员 POST /api/InsuranceOrder/ImportInsDetailStaffToList */ |
| | | export async function importInsDetailStaffToList( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 保单审核 POST /api/InsuranceOrder/InsurancePolicyAudit */ |
| | | export async function insurancePolicyAudit( |
| | | body: API.InsurancePolicyAuditInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<number>('/api/InsuranceOrder/InsurancePolicyAudit', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 修改保单人员信息 POST /api/InsuranceOrder/UpdateInsuranceStaffInfo */ |
| | | export async function updateInsuranceStaffInfo( |
| | | body: API.UpdateInsuranceStaffInfoInput, |