| | |
| | | }); |
| | | } |
| | | |
| | | /** 此处后端没有提供注释 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, |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 运营端 导出投保订单 POST /api/InsuranceOrder/GetInsurancePageBackExport */ |
| | | export async function getInsurancePageBackExport( |
| | | body: API.GetInsurancePageInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<any>('/api/InsuranceOrder/GetInsurancePageBackExport', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 导出投保订单 POST /api/InsuranceOrder/GetInsurancePageExport */ |
| | | export async function getInsurancePageExport( |
| | | body: API.GetInsurancePageInput, |
| | |
| | | }); |
| | | } |
| | | |
| | | /** 保单审核 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, |