|  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 获取电子保单 POST /api/InsuranceOrder/DownloadPolicyFile/${param0} */ | 
|---|
|  |  |  | export async function downloadPolicyFileId( | 
|---|
|  |  |  | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) | 
|---|
|  |  |  | params: API.APIdownloadPolicyFileIdParams, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | const { id: param0, ...queryParams } = params; | 
|---|
|  |  |  | return request<string>(`/api/InsuranceOrder/DownloadPolicyFile/${param0}`, { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | params: { ...queryParams }, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 批量减员保单数据 POST /api/InsuranceOrder/DownsizingInsuranceOrderData */ | 
|---|
|  |  |  | export async function downsizingInsuranceOrderData( | 
|---|
|  |  |  | body: API.DownsizingInsuranceOrderData, | 
|---|
|  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 补提 POST /api/InsuranceOrder/FillInsStaffToList */ | 
|---|
|  |  |  | export async function fillInsStaffToList( | 
|---|
|  |  |  | body: API.FillInsStaffToListFrontInput, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<API.ImportInsStaffToListOutput>('/api/InsuranceOrder/FillInsStaffToList', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 根据身份证号和报案日期查询在保信息 POST /api/InsuranceOrder/GetEffectingStaffList */ | 
|---|
|  |  |  | export async function getEffectingStaffList( | 
|---|
|  |  |  | body: API.GetEffectingStaffListInput, | 
|---|
|  |  |  | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 获取投保订单详情 POST /api/InsuranceOrder/GetInsuranceDetail */ | 
|---|
|  |  |  | export async function getInsuranceDetail( | 
|---|
|  |  |  | body: API.GetInsurancePageInput, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<API.GetInsurancePageOutput>('/api/InsuranceOrder/GetInsuranceDetail', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 获取投保人员审核记录 GET /api/InsuranceOrder/GetInsuranceOrderAuditRecord/${param1} */ | 
|---|
|  |  |  | export async function getInsuranceOrderAuditRecordId( | 
|---|
|  |  |  | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) | 
|---|
|  |  |  | params: API.APIgetInsuranceOrderAuditRecordIdParams, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | const { insuranceOrderId: param0, id: param1, ...queryParams } = params; | 
|---|
|  |  |  | return request<API.InsuranceOrderAuditRecordDto[]>( | 
|---|
|  |  |  | `/api/InsuranceOrder/GetInsuranceOrderAuditRecord/${param1}`, | 
|---|
|  |  |  | { | 
|---|
|  |  |  | method: 'GET', | 
|---|
|  |  |  | params: { ...queryParams }, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | } | 
|---|
|  |  |  | ); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 获取保单详情 GET /api/InsuranceOrder/GetInsuranceOrderDetail */ | 
|---|
|  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 获取保单支付信息 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 || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 获取付款管理列表 POST /api/InsuranceOrder/GetInsurancePolicyPayList */ | 
|---|
|  |  |  | export async function getInsurancePolicyPayList( | 
|---|
|  |  |  | body: API.GetInsurancePolicyPayListInput, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<API.GetInsurancePolicyPayListItemPageOutput>( | 
|---|
|  |  |  | '/api/InsuranceOrder/GetInsurancePolicyPayList', | 
|---|
|  |  |  | { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | } | 
|---|
|  |  |  | ); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 获取盖章文件 GET /api/InsuranceOrder/GetInsurancePolicyStampFiles */ | 
|---|
|  |  |  | export async function getInsurancePolicyStampFiles( | 
|---|
|  |  |  | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) | 
|---|
|  |  |  | 
|---|
|  |  |  | ); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 保单详情-导入人员清单 GET /api/InsuranceOrder/GetInsuranceStaffListExport */ | 
|---|
|  |  |  | /** 保单详情-导出人员清单 POST /api/InsuranceOrder/GetInsuranceStaffListExport */ | 
|---|
|  |  |  | export async function getInsuranceStaffListExport( | 
|---|
|  |  |  | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) | 
|---|
|  |  |  | params: API.APIgetInsuranceStaffListExportParams, | 
|---|
|  |  |  | body: API.ExportInsuranceStaffListInput, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<any>('/api/InsuranceOrder/GetInsuranceStaffListExport', { | 
|---|
|  |  |  | method: 'GET', | 
|---|
|  |  |  | params: { | 
|---|
|  |  |  | ...params, | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<any>('/api/InsuranceOrder/GetInsuranceStaffPageExport', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 获取发票 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/GetOperateRecord */ | 
|---|
|  |  |  | export async function getOperateRecord(body: API.OperateRecordInput, options?: API.RequestConfig) { | 
|---|
|  |  |  | return request<API.OperateRecordDtoPageOutput>('/api/InsuranceOrder/GetOperateRecord', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 新增保单导入 POST /api/InsuranceOrder/ImportInsStaffToList */ | 
|---|
|  |  |  | export async function importInsStaffToList( | 
|---|
|  |  |  | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) | 
|---|
|  |  |  | params: API.APIimportInsStaffToListParams, | 
|---|
|  |  |  | body: API.ImportInsStaffToListFrontInput, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<API.ImportInsStaffAnalysisList[]>('/api/InsuranceOrder/ImportInsStaffToList', { | 
|---|
|  |  |  | return request<API.ImportInsStaffToListOutput>('/api/InsuranceOrder/ImportInsStaffToList', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | params: { | 
|---|
|  |  |  | ...params, | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 提交审核 POST /api/InsuranceOrder/InsurancePolicyAddAudit */ | 
|---|
|  |  |  | export async function insurancePolicyAddAudit( | 
|---|
|  |  |  | body: API.InsurancePolicyAuditInput, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<number>('/api/InsuranceOrder/InsurancePolicyAddAudit', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 保单审核 POST /api/InsuranceOrder/InsurancePolicyAudit */ | 
|---|
|  |  |  | export async function insurancePolicyAudit( | 
|---|
|  |  |  | body: API.InsurancePolicyAuditInput, | 
|---|
|  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 保单再审 POST /api/InsuranceOrder/InsurancePolicyAuditAgain */ | 
|---|
|  |  |  | export async function insurancePolicyAuditAgain( | 
|---|
|  |  |  | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) | 
|---|
|  |  |  | params: API.APIinsurancePolicyAuditAgainParams, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<any>('/api/InsuranceOrder/InsurancePolicyAuditAgain', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | params: { | 
|---|
|  |  |  | ...params, | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 投保状态补录 POST /api/InsuranceOrder/RestorePolicyStatus */ | 
|---|
|  |  |  | export async function restorePolicyStatus( | 
|---|
|  |  |  | body: API.RestorePolicyInput, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<boolean>('/api/InsuranceOrder/RestorePolicyStatus', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 修改保单人员信息 POST /api/InsuranceOrder/UpdateInsuranceStaffInfo */ | 
|---|
|  |  |  | export async function updateInsuranceStaffInfo( | 
|---|
|  |  |  | body: API.UpdateInsuranceStaffInfoInput, | 
|---|