wupengfei
2025-11-08 7738caf497efdfb61f5e262d2a854fc23f86bf88
src/services/api/typings.d.ts
@@ -519,6 +519,27 @@
    timeoutFee?: number;
  }
  interface CalcTaskTotalServiceFeeCommand {
    billingMethod?: EnumBillingMethod;
    /** 服务费 */
    serviceFee?: number;
    /** 核定工时 */
    verifyWorkHours?: number;
    /** 总件数 */
    totalPieceQuantity?: number;
    /** 需求人数 */
    needPeopleNumber?: number;
    /** 任务开始时间 */
    beginTime?: string;
    /** 任务结束时间 */
    endTime?: string;
  }
  interface CalcTaskTotalServiceFeeCommandResult {
    /** 服务费 */
    totalServiceFee?: number;
  }
  interface ChangePhoneNumberCommand {
    /** 手机号码 */
    phoneNumber: string;
@@ -557,10 +578,6 @@
    taskInfoUserId?: string;
    /** 日期 */
    date?: string;
    /** 签到时间 */
    checkInTime?: string;
    /** 签出时间 */
    checkOutTime?: string;
    /** 服务费(元) */
    serviceFee?: number;
    /** 超时(小时) */
@@ -573,6 +590,7 @@
    remark?: string;
    /** 结算金额 */
    settlementAmount?: number;
    checkHistoryType?: EnumTaskUserSubmitCheckHistoryType;
    checkReceiveStatus?: EnumTaskUserSubmitCheckReceiveStatus;
  }
@@ -1325,9 +1343,9 @@
    WaitSubmit = 10,
    /**待验收 */
    WaitCheckReceive = 20,
    /**验收通过/已签到 */
    /**验收通过 */
    Success = 30,
    /**验收未通过/未到岗 */
    /**验收未通过 */
    Fail = 40,
  }
@@ -1632,6 +1650,24 @@
    /** 错误码 */
    errorCode?: string;
    data?: CalcTaskCheckReceiveCommandResult;
    /** 执行成功 */
    success?: boolean;
    /** 错误信息 */
    msg?: any;
    /** 附加数据 */
    extras?: any;
    /** 时间戳 */
    timestamp?: number;
  }
  interface FriendlyResultCalcTaskTotalServiceFeeCommandResult {
    /** 跟踪Id */
    traceId?: string;
    /** 状态码 */
    code?: number;
    /** 错误码 */
    errorCode?: string;
    data?: CalcTaskTotalServiceFeeCommandResult;
    /** 执行成功 */
    success?: boolean;
    /** 错误信息 */
@@ -3918,16 +3954,26 @@
    /** 是否实名 */
    isReal?: boolean;
    realMethod?: EnumUserRealMethod;
    /** 签到时间 */
    /** 用户签到时间 */
    userCheckInTime?: string;
    /** 用户签出时间 */
    userCheckOutTime?: string;
    userCheckHistoryType?: EnumTaskUserSubmitCheckHistoryType;
    /** 用户操作人 */
    userOperator?: string;
    /** 人工签到时间 */
    checkInTime?: string;
    /** 签出时间 */
    /** 人工签出时间 */
    checkOutTime?: string;
    checkHistoryType?: EnumTaskUserSubmitCheckHistoryType;
    /** 操作人 */
    operator?: string;
    /** 最近提交时间 */
    lastSubmitTime?: string;
    checkReceiveStatus?: EnumTaskCheckReceiveStatus;
    submitCheckReceiveStatus?: EnumTaskUserSubmitCheckReceiveStatus;
    /** 验收方式 */
    checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
  }
  interface GetCheckReceiveTaskQueryResultObjectData {
@@ -3946,6 +3992,8 @@
    verifyWorkHours?: number;
    /** 超时服务费 */
    timeoutServiceFee?: number;
    /** 总件数 */
    totalPieceQuantity?: number;
    settlementCycle?: EnumSettlementCycle;
    /** 任务开始时间 */
    beginTime?: string;
@@ -3955,7 +4003,8 @@
    applyBeginTime?: string;
    /** 报名结束时间 */
    applyEndTime?: string;
    checkReceiveMethod?: EnumTaskCheckReceiveMethod;
    /** 验收方式 */
    checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
    paymentMethod?: EnumTaskPaymentMethod;
    settlementAccess?: EnumEnterpriseWalletAccess;
    /** 任务描述 */
@@ -4001,6 +4050,8 @@
    verifyWorkHours?: number;
    /** 超时服务费 */
    timeoutServiceFee?: number;
    /** 总件数 */
    totalPieceQuantity?: number;
    settlementCycle?: EnumSettlementCycle;
    /** 发布时间 */
    createdTime?: string;
@@ -4012,7 +4063,8 @@
    applyBeginTime?: string;
    /** 报名结束时间 */
    applyEndTime?: string;
    checkReceiveMethod?: EnumTaskCheckReceiveMethod;
    /** 验收方式 */
    checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
    paymentMethod?: EnumTaskPaymentMethod;
    settlementAccess?: EnumEnterpriseWalletAccess;
    /** 任务描述 */
@@ -4063,6 +4115,7 @@
    checkTime?: string;
    /** 操作人 */
    operator?: string;
    operatorType?: EnumUserType;
    type?: EnumTaskUserSubmitCheckHistoryType;
  }
@@ -4075,8 +4128,38 @@
    /** 提交时间 */
    createdTime?: string;
    checkReceiveStatus?: EnumTaskUserSubmitCheckReceiveStatus;
    /** 用户签到时间 */
    userCheckInTime?: string;
    /** 用户签出时间 */
    userCheckOutTime?: string;
    userCheckHistoryType?: EnumTaskUserSubmitCheckHistoryType;
    /** 用户操作人 */
    userOperator?: string;
    /** 人工签到时间 */
    checkInTime?: string;
    /** 人工签出时间 */
    checkOutTime?: string;
    checkHistoryType?: EnumTaskUserSubmitCheckHistoryType;
    /** 操作人 */
    operator?: string;
    /** 验收照片 */
    files?: string[];
    /** 验收方式 */
    checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
    /** 任务超时服务费单价 */
    timeoutServiceFee?: number;
    /** 服务费(元) */
    serviceFee?: number;
    /** 超时(小时) */
    timeoutHours?: number;
    /** 超时费用(元) */
    timeoutFee?: number;
    /** 其他费用(元) */
    otherFee?: number;
    /** 备注 */
    remark?: string;
    /** 结算金额 */
    settlementAmount?: number;
  }
  interface GetCheckReceiveTaskUserSubmitsQuery {
@@ -4099,10 +4182,18 @@
    id?: string;
    /** 验收时间 */
    date?: string;
    /** 签到时间 */
    /** 用户签到时间 */
    userCheckInTime?: string;
    /** 用户签出时间 */
    userCheckOutTime?: string;
    userCheckHistoryType?: EnumTaskUserSubmitCheckHistoryType;
    /** 用户操作人 */
    userOperator?: string;
    /** 人工签到时间 */
    checkInTime?: string;
    /** 签出时间 */
    /** 人工签出时间 */
    checkOutTime?: string;
    checkHistoryType?: EnumTaskUserSubmitCheckHistoryType;
    /** 操作人 */
    operator?: string;
    /** 提交时间 */
@@ -4112,6 +4203,8 @@
    checkReceiveStatus?: EnumTaskUserSubmitCheckReceiveStatus;
    /** 验收时间 */
    checkReceiveTime?: string;
    /** 验收方式 */
    checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
  }
  interface GetCheckReceiveTaskUserSubmitsQueryResultObjectData {
@@ -4149,6 +4242,8 @@
    endTime?: string;
    /** 任务地点名称 */
    addressName?: string;
    /** 验收方式 */
    checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
  }
  interface GetCodeUrlQueryResult {
@@ -4312,6 +4407,8 @@
  interface GetCooperationWalletRechargeTransactionQueryResult {
    /** 交易Id */
    id?: string;
    /** 合作Id */
    cooperationId?: string;
    /** 进账单位 */
    receiveUnit?: string;
    /** 开户名称 */
@@ -4326,6 +4423,8 @@
    amount?: number;
    /** 充值时间 */
    createdTime?: string;
    /** 备注 */
    remark?: string;
    transactionStatus?: EnumEnterpriseCooperationWalletTransactionStatus;
    /** 凭证 */
    files?: string[];
@@ -4334,6 +4433,8 @@
  interface GetCooperationWalletRechargeTransactionsQuery {
    /** 合作Id */
    cooperationId?: string;
    /** 关键字 */
    keywords?: string;
    pageModel?: PagedListQueryPageModel;
  }
@@ -4346,6 +4447,8 @@
  interface GetCooperationWalletRechargeTransactionsQueryResultItem {
    /** 交易Id */
    id?: string;
    /** 钱包Id */
    walletId?: string;
    /** 供应商Id */
    supplierEnterpriseId?: string;
    /** 供应商名称 */
@@ -4776,6 +4879,8 @@
    gender?: EnumUserGender;
    /** 企业全称 */
    enterpriseName?: string;
    /** 企业是否实名 */
    enterpriseIsReal?: boolean;
    /** 角色 */
    roles?: string[];
    /** 是否实名 */
@@ -5605,7 +5710,8 @@
    applyBeginTime?: string;
    /** 报名结束时间 */
    applyEndTime?: string;
    checkReceiveMethod?: EnumTaskCheckReceiveMethod;
    /** 验收方式 */
    checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
    paymentMethod?: EnumTaskPaymentMethod;
    settlementAccess?: EnumEnterpriseWalletAccess;
    /** 任务描述 */
@@ -5617,6 +5723,8 @@
    verifyWorkHours?: number;
    /** 超时服务费 */
    timeoutServiceFee?: number;
    /** 总件数 */
    totalPieceQuantity?: number;
    settlementCycle?: EnumSettlementCycle;
    /** 福利 */
    benefits?: GetTaskInfoQueryResultBenefit[];
@@ -5661,7 +5769,8 @@
    applyBeginTime?: string;
    /** 报名结束时间 */
    applyEndTime?: string;
    checkReceiveMethod?: EnumTaskCheckReceiveMethod;
    /** 验收方式 */
    checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
    paymentMethod?: EnumTaskPaymentMethod;
    settlementAccess?: EnumEnterpriseWalletAccess;
    /** 任务描述 */
@@ -5673,6 +5782,8 @@
    verifyWorkHours?: number;
    /** 超时服务费 */
    timeoutServiceFee?: number;
    /** 总件数 */
    totalPieceQuantity?: number;
    settlementCycle?: EnumSettlementCycle;
    /** 福利 */
    benefits?: GetTaskInfoQueryResultBenefit[];
@@ -5710,7 +5821,8 @@
    applyBeginTime?: string;
    /** 报名结束时间 */
    applyEndTime?: string;
    checkReceiveMethod?: EnumTaskCheckReceiveMethod;
    /** 验收方式 */
    checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
    paymentMethod?: EnumTaskPaymentMethod;
    settlementAccess?: EnumEnterpriseWalletAccess;
    /** 任务描述 */
@@ -5722,6 +5834,8 @@
    verifyWorkHours?: number;
    /** 超时服务费 */
    timeoutServiceFee?: number;
    /** 总件数 */
    totalPieceQuantity?: number;
    settlementCycle?: EnumSettlementCycle;
    /** 福利 */
    benefits?: GetTaskInfoQueryResultBenefit[];
@@ -5744,10 +5858,6 @@
  interface GetPersonalLoginInfoQueryResult {
    /** Id */
    id?: string;
    /** 企业Id */
    enterpriseId?: string;
    /** 企业名称 */
    enterpriseName?: string;
    /** 头像 */
    avatar?: string;
    /** 姓名 */
@@ -6072,6 +6182,9 @@
    settlementReceiveStatus?: SettlementReceiveStatus;
    /** 结算时间 */
    settlementTime?: string;
    settlementAuditStatus?: EnumTaskSettlementAuditStatus;
    /** 审核时间 */
    settlementAuditTime?: string;
    /** 付款人账户 */
    payerAccount?: string;
    /** 付款人名称 */
@@ -6384,6 +6497,8 @@
    checkReceiveStatus?: EnumTaskCheckReceiveStatus;
    /** 结算单号 */
    settlementCode?: string;
    /** 供应商名称 */
    supplierEnterpriseName?: string;
    settlementOrderStatus?: EnumTaskSettlementOrderStatus;
    /** 结算单名称 */
    settlementOrderName?: string;
@@ -6454,6 +6569,8 @@
    verifyWorkHours?: number;
    /** 超时服务费 */
    timeoutServiceFee?: number;
    /** 总件数 */
    totalPieceQuantity?: number;
    settlementAccess?: EnumEnterpriseWalletAccess;
    settlementOrderStatus?: EnumTaskSettlementOrderStatus;
    /** 结算单名称 */
@@ -6713,10 +6830,14 @@
    billingMethod?: EnumBillingMethod;
    /** 服务费 */
    serviceFee?: number;
    /** 预计服务费 */
    estimatedServiceFee?: number;
    /** 核定工时 */
    verifyWorkHours?: number;
    /** 超时服务费 */
    timeoutServiceFee?: number;
    /** 总件数 */
    totalPieceQuantity?: number;
    settlementCycle?: EnumSettlementCycle;
    /** 结算日期 */
    settlementDate?: number;
@@ -6753,7 +6874,8 @@
    applyBeginTime?: string;
    /** 报名结束时间 */
    applyEndTime?: string;
    checkReceiveMethod?: EnumTaskCheckReceiveMethod;
    /** 验收方式 */
    checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
    paymentMethod?: EnumTaskPaymentMethod;
    settlementAccess?: EnumEnterpriseWalletAccess;
    /** 任务描述 */
@@ -6865,6 +6987,8 @@
    verifyWorkHours?: number;
    /** 超时服务费 */
    timeoutServiceFee?: number;
    /** 总件数 */
    totalPieceQuantity?: number;
    settlementCycle?: EnumSettlementCycle;
    /** 福利 */
    benefits?: GetTaskInfoQueryResultBenefit[];
@@ -6899,7 +7023,8 @@
    /** 报名结束时间 */
    applyEndTime?: string;
    applyStatus?: EnumTaskApplyStatus;
    checkReceiveMethod?: EnumTaskCheckReceiveMethod;
    /** 验收方式 */
    checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
    paymentMethod?: EnumTaskPaymentMethod;
    settlementAccess?: EnumEnterpriseWalletAccess;
    /** 任务描述 */
@@ -7754,6 +7879,8 @@
  type RepairContractTemplateValuePointBy1202Command = Record<string, any>;
  type RepairTaskEstimatedServiceFee1301Command = Record<string, any>;
  interface ResendResourceCommand {
    /** 资源日志Id */
    id?: string;
@@ -8202,6 +8329,8 @@
    verifyWorkHours?: number;
    /** 超时服务费 */
    timeoutServiceFee?: number;
    /** 总件数 */
    totalPieceQuantity?: number;
    settlementCycle: EnumSettlementCycle;
    /** 结算日期 */
    settlementDate: number;
@@ -8234,7 +8363,8 @@
    applyBeginTime?: string;
    /** 报名结束时间 */
    applyEndTime?: string;
    checkReceiveMethod?: EnumTaskCheckReceiveMethod;
    /** 验收方式 */
    checkReceiveMethods?: EnumTaskCheckReceiveMethod[];
    paymentMethod?: EnumTaskPaymentMethod;
    settlementAccess?: EnumEnterpriseWalletAccess;
    /** 任务描述 */
@@ -8588,11 +8718,14 @@
    taskInfoId?: string;
    /** 日期 */
    date?: string;
    userCheckHistoryType?: EnumTaskUserSubmitCheckHistoryType;
    /** 附件 */
    files?: string[];
  }
  interface SureRechargeCooperationWalletCommand {
    /** 合作Id */
    cooperationId?: string;
    /** 交易Id */
    id?: string;
    transactionStatus?: EnumEnterpriseCooperationWalletTransactionStatus;