|  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 补提 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 */ | 
|---|
|  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 获取付款管理列表 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默认没有生成对象) | 
|---|
|  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 获取补录记录 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', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 投保详情-导入人员 POST /api/InsuranceOrder/ImportInsDetailStaffToList */ | 
|---|
|  |  |  | export async function importInsDetailStaffToList( | 
|---|
|  |  |  | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) | 
|---|
|  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 提交审核 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, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<API.InsurancePolicyAuditOutput>('/api/InsuranceOrder/InsurancePolicyAudit', { | 
|---|
|  |  |  | return request<number>('/api/InsuranceOrder/InsurancePolicyAudit', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|