|  |  |  | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 查询批次号状态 GET /api/InsuranceOrder/CheckInrancesSerialNumStatus */ | 
|---|
|  |  |  | export async function checkInrancesSerialNumStatus( | 
|---|
|  |  |  | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) | 
|---|
|  |  |  | params: API.APIcheckInrancesSerialNumStatusParams, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<API.InsurancePolicyStatusEnum>( | 
|---|
|  |  |  | '/api/InsuranceOrder/CheckInrancesSerialNumStatus', | 
|---|
|  |  |  | { | 
|---|
|  |  |  | method: 'GET', | 
|---|
|  |  |  | params: { | 
|---|
|  |  |  | ...params, | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | } | 
|---|
|  |  |  | ); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 保单详情-情况人员数据 GET /api/InsuranceOrder/ClearInsuranceStaffData */ | 
|---|
|  |  |  | export async function clearInsuranceStaffData( | 
|---|
|  |  |  | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) | 
|---|
|  |  |  | params: API.APIclearInsuranceStaffDataParams, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<number>('/api/InsuranceOrder/ClearInsuranceStaffData', { | 
|---|
|  |  |  | method: 'GET', | 
|---|
|  |  |  | params: { | 
|---|
|  |  |  | ...params, | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 删除保单材料 POST /api/InsuranceOrder/DeleteInsuranceOrderMaterial */ | 
|---|
|  |  |  | export async function deleteInsuranceOrderMaterial(body: string, options?: API.RequestConfig) { | 
|---|
|  |  |  | return request<number>('/api/InsuranceOrder/DeleteInsuranceOrderMaterial', { | 
|---|
|  |  |  | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 获取电子保单 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 || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 补提 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, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<API.InsuranceOrderListOutput[]>('/api/InsuranceOrder/GetEffectingStaffList', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | 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/GetInsuranceOrderSerialNum */ | 
|---|
|  |  |  | export async function getInsuranceOrderSerialNum(options?: API.RequestConfig) { | 
|---|
|  |  |  | return request<string>('/api/InsuranceOrder/GetInsuranceOrderSerialNum', { | 
|---|
|  |  |  | method: 'GET', | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 获取投保订单列表 POST /api/InsuranceOrder/GetInsurancePage */ | 
|---|
|  |  |  | export async function getInsurancePage( | 
|---|
|  |  |  | body: API.GetInsurancePageInput, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<API.GetInsurancePageOutputPageOutput>('/api/InsuranceOrder/GetInsurancePage', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 运营端 导出投保订单 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, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<any>('/api/InsuranceOrder/GetInsurancePageExport', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 获取投保详情基本信息 GET /api/InsuranceOrder/GetInsurancePolicyHeadDto */ | 
|---|
|  |  |  | export async function getInsurancePolicyHeadDto( | 
|---|
|  |  |  | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) | 
|---|
|  |  |  | params: API.APIgetInsurancePolicyHeadDtoParams, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<API.GetInsurancePageOutput>('/api/InsuranceOrder/GetInsurancePolicyHeadDto', { | 
|---|
|  |  |  | method: 'GET', | 
|---|
|  |  |  | params: { | 
|---|
|  |  |  | ...params, | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 获取保单支付信息 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默认没有生成对象) | 
|---|
|  |  |  | params: API.APIgetInsurancePolicyStampFilesParams, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<string[]>('/api/InsuranceOrder/GetInsurancePolicyStampFiles', { | 
|---|
|  |  |  | method: 'GET', | 
|---|
|  |  |  | params: { | 
|---|
|  |  |  | ...params, | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 查询保单详情下人员列表 POST /api/InsuranceOrder/GetInsuranceStaffList */ | 
|---|
|  |  |  | export async function getInsuranceStaffList( | 
|---|
|  |  |  | body: API.GetInsuranceStaffListInput, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<API.GetInsuranceStaffPageTemplatePageOutput>( | 
|---|
|  |  |  | '/api/InsuranceOrder/GetInsuranceStaffList', | 
|---|
|  |  |  | { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | } | 
|---|
|  |  |  | ); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 保单详情-导出人员清单 POST /api/InsuranceOrder/GetInsuranceStaffListExport */ | 
|---|
|  |  |  | export async function getInsuranceStaffListExport( | 
|---|
|  |  |  | body: API.ExportInsuranceStaffListInput, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<any>('/api/InsuranceOrder/GetInsuranceStaffListExport', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 此处后端没有提供注释 POST /api/InsuranceOrder/GetInsuranceStaffPageExport */ | 
|---|
|  |  |  | export async function getInsuranceStaffPageExport( | 
|---|
|  |  |  | body: API.GetInsurancePageInput, | 
|---|
|  |  |  | 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', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 投保详情-导入人员 POST /api/InsuranceOrder/ImportInsDetailStaffToList */ | 
|---|
|  |  |  | export async function importInsDetailStaffToList( | 
|---|
|  |  |  | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) | 
|---|
|  |  |  | params: API.APIimportInsDetailStaffToListParams, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<API.ImportInsStaffAnalysisList[]>( | 
|---|
|  |  |  | '/api/InsuranceOrder/ImportInsDetailStaffToList', | 
|---|
|  |  |  | { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | params: { | 
|---|
|  |  |  | ...params, | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | } | 
|---|
|  |  |  | ); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 新增保单导入 POST /api/InsuranceOrder/ImportInsStaffToList */ | 
|---|
|  |  |  | export async function importInsStaffToList( | 
|---|
|  |  |  | body: API.ImportInsStaffToListFrontInput, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<API.ImportInsStaffToListOutput>('/api/InsuranceOrder/ImportInsStaffToList', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 导入保单数据 POST /api/InsuranceOrder/ImportInsuranceOrderData */ | 
|---|
|  |  |  | export async function importInsuranceOrderData(body: string, options?: API.RequestConfig) { | 
|---|
|  |  |  | return request<any>('/api/InsuranceOrder/ImportInsuranceOrderData', { | 
|---|
|  |  |  | 
|---|
|  |  |  | ...(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, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<number>('/api/InsuranceOrder/InsurancePolicyAudit', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 保单再审 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, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<number>('/api/InsuranceOrder/UpdateInsuranceStaffInfo', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 上传保单 POST /api/InsuranceOrder/UplaodInsuranceBillFile */ | 
|---|
|  |  |  | export async function uplaodInsuranceBillFile( | 
|---|
|  |  |  | body: API.UplaodInsuranceBillFileInput, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<number>('/api/InsuranceOrder/UplaodInsuranceBillFile', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** 上传盖章文件 POST /api/InsuranceOrder/UploadInsuranceStampFiles */ | 
|---|
|  |  |  | export async function uploadInsuranceStampFiles( | 
|---|
|  |  |  | body: API.UploadInsuranceStampFilesInput, | 
|---|
|  |  |  | options?: API.RequestConfig | 
|---|
|  |  |  | ) { | 
|---|
|  |  |  | return request<number>('/api/InsuranceOrder/UploadInsuranceStampFiles', { | 
|---|
|  |  |  | method: 'POST', | 
|---|
|  |  |  | headers: { | 
|---|
|  |  |  | 'Content-Type': 'application/json', | 
|---|
|  |  |  | }, | 
|---|
|  |  |  | data: body, | 
|---|
|  |  |  | ...(options || {}), | 
|---|
|  |  |  | }); | 
|---|
|  |  |  | } | 
|---|