| | |
| | | }); |
| | | } |
| | | |
| | | /** 补提 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, |