| | |
| | | }); |
| | | } |
| | | |
| | | /** 获取保险产品方案下拉列表 POST /api/Dictionary/GetInsureProductSchemeAllList */ |
| | | export async function getInsureProductSchemeAllList( |
| | | body: API.GetInsureProductSchemePageInput, |
| | | options?: API.RequestConfig |
| | | ) { |
| | | return request<API.InsureProductSchemeDto[]>('/api/Dictionary/GetInsureProductSchemeAllList', { |
| | | method: 'POST', |
| | | headers: { |
| | | 'Content-Type': 'application/json', |
| | | }, |
| | | data: body, |
| | | ...(options || {}), |
| | | }); |
| | | } |
| | | |
| | | /** 获取保险产品方案列表 POST /api/Dictionary/GetInsureProductSchemePage */ |
| | | export async function getInsureProductSchemePage( |
| | | body: API.GetInsureProductSchemePageInput, |