| | |
| | | }); |
| | | } |
| | | |
| | | /** 获取用户公司名称列表 GET /api/InsuranceClaim/GetInsuranceClaimCompanyList */ |
| | | export async function getInsuranceClaimCompanyList(options?: API.RequestConfig) { |
| | | return request<string[]>('/api/InsuranceClaim/GetInsuranceClaimCompanyList', { |
| | | method: 'GET', |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 获取保险理赔统计数量 POST /api/InsuranceClaim/GetInsuranceClaimCount */ |
| | | export async function getInsuranceClaimCount( |
| | | body: API.QueryInsuranceClaimCountInput, |
| | |
| | | ); |
| | | } |
| | | |
| | | /** 获取人员理赔列表 GET /api/InsuranceClaim/GetInsuranceClaimDetailList */ |
| | | export async function getInsuranceClaimDetailList( |
| | | // 叠加生成的Param类型 (非body参数swagger默认没有生成对象) |
| | | params: API.APIgetInsuranceClaimDetailListParams, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<API.InsuranceClaimDetailOutput[]>( |
| | | '/api/InsuranceClaim/GetInsuranceClaimDetailList', |
| | | { |
| | | method: 'GET', |
| | | params: { |
| | | ...params, |
| | | }, |
| | | ...(options || {}), |
| | | } |
| | | ); |
| | | } |
| | | |
| | | /** 获取保险理赔分页列表 POST /api/InsuranceClaim/GetInsuranceClaimPage */ |
| | | export async function getInsuranceClaimPage( |
| | | body: API.QueryInsuranceClaimPageInput, |