wupengfei
2025-03-28 acaec313ab0e3c9381060e36bf3ce4abc606dc9a
src/services/api/typings.d.ts
@@ -268,6 +268,10 @@
    id?: string;
  }
  interface APIgetInsureBatchDetailParams {
    batchBillId?: string;
  }
  interface APIgetListParams {
    filter?: string;
    clientId?: string;
@@ -459,6 +463,8 @@
    insureBatchBillId?: string;
    /** 审核理由 */
    auditNote?: string;
    /** 批单编号 */
    batchBillNo?: string;
    checkStatus?: BatchBillCheckStatus;
    /** 生效时间 */
    effectTime?: string;
@@ -483,6 +489,20 @@
    id2?: string;
    sortCode2?: number;
    type?: number;
  }
  interface CheckImportBatchAddOrSubOrderDataOutput {
    /** 错误数据列表 */
    error?: ImportBatchAddOrSubOrderDataInput[];
    /** 新增数据列表 */
    addOrSub?: ImportBatchAddOrSubOrderDataInput[];
  }
  interface CheckImportBatchUpdateOrderDataOutput {
    /** 错误数据列表 */
    error?: ImportBatchUpdateOrderDataInput[];
    /** 替换数据列表 */
    update?: ImportBatchUpdateOrderDataInput[];
  }
  interface CheckLoginVerificationCodeInput {
@@ -968,6 +988,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 +1034,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 {
@@ -1192,6 +1263,10 @@
    orderRelevanceStr?: string;
    /** 保单文件 */
    orderBillFile?: string;
    /** 投保人和被投保人 */
    enterpriseName?: string;
    phone?: string;
    insuranceOrg?: string;
  }
  interface InsuranceOrderListOutputPageOutput {
@@ -1226,6 +1301,8 @@
    idNumber?: string;
    /** 性别 */
    gender?: string;
    /** 手机号码 */
    phoneNumber?: string;
    /** 年龄 */
    age?: number;
    /** 出生日期 */
@@ -1288,6 +1365,17 @@
    delInsStaffList?: ImportBatchStaffListInput[];
  }
  interface InsureBatchDetailDto {
    /** 批改人员详情 */
    staffList?: InsureBatchBillDetailDto[];
    /** 生效时间 */
    effectTime?: string;
    /** 保单号 */
    insureBillNo?: string;
    /** 投保人 */
    enterpriseName?: string;
  }
  interface IStringValueType {
    name?: string;
    properties?: Record<string, any>;