| | |
| | | }); |
| | | } |
| | | |
| | | /** 获取投保订单详情 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默认没有生成对象) |