zhengyiming
5 天以前 7c86889e5177ae0da77fd75f298fabe9971b2822
src/services/api/Dictionary.ts
@@ -62,6 +62,21 @@
  });
}
/** 获取保险产品方案下拉列表 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,