wupengfei
2025-03-31 b697737f281023871227b26b6c9d6c309cd3e899
src/services/api/typings.d.ts
@@ -240,6 +240,10 @@
    orderId?: string;
  }
  interface APIgetInsuranceClaimDetailListParams {
    id?: string;
  }
  interface APIgetInsuranceClaimDetailParams {
    id?: string;
  }
@@ -266,6 +270,10 @@
  interface APIgetInsuranceStaffListExportParams {
    id?: string;
  }
  interface APIgetInsureBatchDetailParams {
    batchBillId?: string;
  }
  interface APIgetListParams {
@@ -459,6 +467,8 @@
    insureBatchBillId?: string;
    /** 审核理由 */
    auditNote?: string;
    /** 批单编号 */
    batchBillNo?: string;
    checkStatus?: BatchBillCheckStatus;
    /** 生效时间 */
    effectTime?: string;
@@ -483,6 +493,20 @@
    id2?: string;
    sortCode2?: number;
    type?: number;
  }
  interface CheckImportBatchAddOrSubOrderDataOutput {
    /** 错误数据列表 */
    error?: ImportBatchAddOrSubOrderDataInput[];
    /** 新增数据列表 */
    addOrSub?: ImportBatchAddOrSubOrderDataInput[];
  }
  interface CheckImportBatchUpdateOrderDataOutput {
    /** 错误数据列表 */
    error?: ImportBatchUpdateOrderDataInput[];
    /** 替换数据列表 */
    update?: ImportBatchUpdateOrderDataInput[];
  }
  interface CheckLoginVerificationCodeInput {
@@ -812,6 +836,7 @@
    age?: number;
    birthDay?: string;
    phone?: string;
    claimCount?: number;
    creationTime?: string;
  }
@@ -968,6 +993,31 @@
    roleNames: string[];
  }
  interface ImportBatchAddOrSubOrderDataInput {
    /** 批改标志 */
    changeFlag: string;
    /** 方案代码 */
    insuranceScheme: string;
    /** 姓名 */
    name: string;
    /** 证件类型 */
    certType: string;
    /** 证件号码 */
    idNumber: string;
    /** 年龄 */
    age?: number;
    /** 电话号码 */
    phoneNumber?: string;
    /** 职业/工种 */
    workType: string;
    /** 性别 */
    gender?: string;
    /** 出生日期 */
    birthDay?: string;
    /** 备注 */
    remark?: string;
  }
  interface ImportBatchAddOrSubOrderInput {
    /** 导入地址 */
    url?: string;
@@ -989,6 +1039,32 @@
    workType?: string;
    birthDay?: string;
    remark?: string;
  }
  interface ImportBatchUpdateOrderDataInput {
    /** 原被保人姓名 */
    orginName: string;
    /** 原被保人证件号码 */
    orginIdNumber: string;
    /** 姓名 */
    name: string;
    /** 证件类型 */
    certType: string;
    /** 证件号码 */
    idNumber: string;
    /** 电话号码 */
    phoneNumber?: string;
    /** 职业/工种 */
    workType: string;
    /** 性别 */
    gender?: string;
    /** 年龄 */
    age?: number;
    /** 出生日期 */
    birthDay?: string;
    /** 备注 */
    remark?: string;
    changeFlag?: string;
  }
  interface ImportInsStaffAnalysisList {
@@ -1107,6 +1183,8 @@
    disabilityRatio?: number;
    /** 理赔渠道 */
    claimChannel?: string;
    /** 理赔渠道 */
    companyName?: string;
    claimResult?: InsuranceClaimResultEnum;
    claimResultStr?: string;
    /** 下款金额 */
@@ -1192,6 +1270,10 @@
    orderRelevanceStr?: string;
    /** 保单文件 */
    orderBillFile?: string;
    /** 投保人和被投保人 */
    enterpriseName?: string;
    phone?: string;
    insuranceOrg?: string;
  }
  interface InsuranceOrderListOutputPageOutput {
@@ -1226,6 +1308,8 @@
    idNumber?: string;
    /** 性别 */
    gender?: string;
    /** 手机号码 */
    phoneNumber?: string;
    /** 年龄 */
    age?: number;
    /** 出生日期 */
@@ -1286,6 +1370,17 @@
    updateInsStaffList?: ImportBatchStaffListInput[];
    /** 删除人员列表 */
    delInsStaffList?: ImportBatchStaffListInput[];
  }
  interface InsureBatchDetailDto {
    /** 批改人员详情 */
    staffList?: InsureBatchBillDetailDto[];
    /** 生效时间 */
    effectTime?: string;
    /** 保单号 */
    insureBillNo?: string;
    /** 投保人 */
    enterpriseName?: string;
  }
  interface IStringValueType {
@@ -1527,18 +1622,23 @@
    month?: number;
    /** 理赔渠道 */
    claimChannel?: string;
    companyName?: string;
  }
  interface QueryInsuranceClaimPageInput {
    pageModel?: Pagination;
    /** 理赔渠道 */
    claimChannel?: string;
    /** 公司名称 */
    companyName?: string;
    /** 劳动合同单位 */
    laborContractEnterprise?: string;
    /** 实际工作单位 */
    workEnterprise?: string;
    /** 身份证号 */
    idNumber?: string;
    /** 投保人/被保人 */
    insurerName?: string;
    claimResult?: InsuranceClaimResultEnum;
  }