wupengfei
2025-04-08 9e63ed4533fe6fbb5e81a096c9f5949c7ccf58f2
src/services/api/typings.d.ts
@@ -2671,6 +2671,8 @@
    userId?: string;
  }
  type BountyCheckStatusEnum = 10 | 20 | 30;
  type BusinessSettingTypeEnum = 10;
  interface CalculationWalletPayFeeInput {
@@ -3779,6 +3781,7 @@
    companyOrgId?: string;
    /** 组织架构部门id */
    departmentOrgId?: string;
    password?: string;
  }
  interface CreateBackClientUserInput {
@@ -3795,6 +3798,7 @@
    companyOrgId?: string;
    /** 组织架构部门id */
    departmentOrgId?: string;
    password?: string;
  }
  interface CreateBaseRoleInput {
@@ -5508,6 +5512,8 @@
    listOrderNo?: number[];
  }
  type EnterpriseBountyPayTypeEnum = 10 | 20;
  interface EnterpriseMaterialDetailOutput {
    id?: string;
    /** 年 */
@@ -6230,7 +6236,7 @@
    pageModel?: Pagination;
    /** 账户是否锁住(是否禁用) */
    isLocked?: boolean;
    /** 查询条件:名称/账号 */
    /** 查询条件:名称/账号/手机号 */
    queryCondition?: string;
  }
@@ -6520,6 +6526,23 @@
    platedTime?: string;
    /** 操作人 */
    operator?: string;
  }
  interface GetEnterpriseBuntyTradeDto {
    id?: string;
    payDateTime?: string;
    amount?: number;
    payType?: EnterpriseBountyPayTypeEnum;
    remianAmount?: number;
    payRemark?: string;
    fileUrl?: string;
    payFileUrls?: string[];
  }
  interface GetEnterpriseBuntyTradeDtoPageOutput {
    pageModel?: Pagination;
    objectData?: any;
    data?: GetEnterpriseBuntyTradeDto[];
  }
  interface GetEnterpriseCredentialDataResponse {
@@ -7684,6 +7707,88 @@
    enterinessName?: string;
  }
  interface GetParkBountyApplyInfoInput {
    parkBountyApplyId?: string;
    /** 企业名/信用代码 */
    searchKeyWord?: string;
  }
  interface GetParkBountyApplyInfoOutput {
    parkBountyApplyBaseInfo?: ParkBountyApplyBaseInfo;
    parkBountyApplyDetailInfoList?: ParkBountyApplyDetailInfo[];
  }
  interface GetParkBountyApplyListInput {
    pageModel?: Pagination;
    /** 申请批次号 */
    batchNo?: string;
    /** 申请起始日期 */
    creationTimeBegin?: string;
    /** 申请结束日期 */
    creationTimeEnd?: string;
    /** 发放起始日期 */
    settleTimeBegin?: string;
    /** 发放结束日期 */
    settleTimeEnd?: string;
    /** 入账起始日期 */
    incomeTimeBegin?: string;
    /** 入账结束日期 */
    incomeTimeEnd?: string;
    /** 外部审核起始日期 */
    outCheckTimeBegin?: string;
    /** 外部审核结束日期 */
    outCheckTimeEnd?: string;
    outCheckStatus?: BountyCheckStatusEnum;
    inCheckStatus?: BountyCheckStatusEnum;
    settleStatus?: SettleStatusEnum;
    incomeStatus?: IncomeStatusEnum;
  }
  interface GetParkBountyApplyListOutput {
    id?: string;
    /** 申请批次号 */
    batchNo?: string;
    /** 申请园区Id */
    parkId?: string;
    /** 申请园区 */
    parkName?: string;
    /** 申请园区类型 */
    parkTypeName?: string;
    /** 申请奖励金月份 */
    applyMonth?: string;
    /** 奖励金汇总金额 */
    applySumAmount?: number;
    /** 申请日期 */
    creationTime?: string;
    settleStatus?: SettleStatusEnum;
    /** 发放日期 */
    settleTime?: string;
    incomeStatus?: IncomeStatusEnum;
    /** 入账日期 */
    incomeTime?: string;
    outCheckStatus?: BountyCheckStatusEnum;
    /** 外部审核日期 */
    outCheckTime?: string;
  }
  interface GetParkBountyApplyListOutputPageOutput {
    pageModel?: Pagination;
    objectData?: any;
    data?: GetParkBountyApplyListOutput[];
  }
  interface GetParkBountyApplyTransferInfoInput {
    parkBountyApplyId?: string;
    /** 企业名/信用代码 */
    searchKeyWord?: string;
    transferToStatus?: TransferToStatusEnum;
  }
  interface GetParkBountyApplyTransferInfoOutput {
    parkBountyApplyBaseInfo?: ParkBountyApplyBaseInfo;
    parkBountyApplyTransferDetailInfoList?: ParkBountyApplyTransferDetailInfo[];
  }
  interface GetParkOrHRInfoByUserInput {
    categoryId?: string;
    userId?: string;
@@ -8158,6 +8263,19 @@
    attestateEndDate?: string;
    /** 查询条件:客户名称/联系人/手机号 */
    queryCondition?: string;
  }
  interface GetUserBaseEnterpriseInfoOutput {
    /** 奖励金余额 */
    bountyAmount?: number;
    enterpriseName?: string;
    societyCreditCode?: string;
    licenseUrl?: string;
    enterpriseIsVerify?: boolean;
    bankName?: string;
    bankBranchName?: string;
    bankCardNumber?: string;
    bankIsVerify?: boolean;
  }
  interface GetUserBaseInfoDataResponse {
@@ -9115,6 +9233,8 @@
  }
  type IncomeExpenseTypeEnum = 10 | 20;
  type IncomeStatusEnum = 1 | 2;
  interface IndustrialParkDetailOutput {
    id?: string;
@@ -13730,6 +13850,118 @@
    descriptorName?: string;
  }
  interface ParkBountyApplyBaseInfo {
    /** 申请批次号 */
    batchNo?: string;
    /** 申请园区Id */
    parkId?: string;
    /** 申请园区 */
    parkName?: string;
    /** 申请园区类型 */
    parkTypeName?: string;
    /** 申请奖励金月份 */
    applyMonth?: string;
    /** 奖励金汇总金额 */
    applySumAmount?: number;
    /** 汇总明细表 */
    enterpriseTaxSubFileUrl?: string;
    /** 企业营收汇总表 */
    enterpriseOperateFileUrl?: string;
    /** 奖励金分配表 */
    bountyAssignFileUlr?: string;
    /** 奖励金汇总表 */
    bountyCollectFileUrl?: string;
  }
  interface ParkBountyApplyBatchTransferInput {
    parkBountyApplyDetailId?: string[];
    /** 入账金额 */
    transferToAmount?: number;
  }
  interface ParkBountyApplyDetailInfo {
    parkBountyApplyId?: string;
    enterpriseId?: string;
    /** 企业名称 */
    enterpriseName?: string;
    /** 基本户信息 */
    bankAccountInfo?: string;
    /** 电话 */
    contactPhone?: string;
    /** 营业执照 */
    licenseUrl?: string;
    /** 社会统一信用代码 */
    societyCreditCode?: string;
    /** 园区入驻协议 */
    parkEnterPactUrl?: string;
    /** 完税证明 */
    ratePaymentFileUrl?: string;
    /** 企业缴税明细汇总表 */
    taxSubFileUrl?: string;
    /** 企业经营利润表 */
    operateProfitesUrl?: string;
    /** 入驻关联说明 */
    enterRelateUrl?: string;
    /** C端个税完税情况说明 */
    personTaxRatePayUrl?: string;
    authType?: EnterpriseTypeEnum;
  }
  interface ParkBountyApplySettleInput {
    parkBountyApplyId?: string;
    /** 发放凭证 */
    settleFileUrl?: string;
  }
  interface ParkBountyApplyTransferDetailInfo {
    parkBountyApplyId?: string;
    /** 账号 */
    userName?: string;
    enterpriseId?: string;
    /** 企业名称 */
    enterpriseName?: string;
    /** 基本户信息 */
    bankAccountInfo?: string;
    /** 电话 */
    contactPhone?: string;
    /** 营业执照 */
    licenseUrl?: string;
    /** 社会统一信用代码 */
    societyCreditCode?: string;
    /** 园区入驻协议 */
    parkEnterPactUrl?: string;
    /** 完税证明 */
    ratePaymentFileUrl?: string;
    /** 企业缴税明细汇总表 */
    taxSubFileUrl?: string;
    /** 企业经营利润表 */
    operateProfitesUrl?: string;
    /** 入驻关联说明 */
    enterRelateUrl?: string;
    /** C端个税完税情况说明 */
    personTaxRatePayUrl?: string;
    authType?: EnterpriseTypeEnum;
    transferToStatus?: TransferToStatusEnum;
    /** 入账金额 */
    transferToAmount?: number;
    /** 入账时间 */
    transferToTime?: string;
    /** 入账凭证 */
    transferToFileUrl?: string;
  }
  interface ParkBountyApplyTransferFileInput {
    parkBountyApplyDetailId?: string;
    /** 入账凭证 */
    transferToFileUrl?: string;
  }
  interface ParkBountyApplyTransferInput {
    parkBountyApplyDetailId?: string;
    /** 入账金额 */
    transferToAmount?: number;
  }
  type ParkCustomersCountTypeEnum = 10 | 50 | 100;
  interface ParkHRForHomePageInput {
@@ -16595,6 +16827,7 @@
  interface ResetPasswordBaseInput {
    userId?: string;
    password?: string;
  }
  interface ResetPasswordDto {
@@ -17350,12 +17583,26 @@
    type?: number;
  }
  type SettleStatusEnum = 1 | 2;
  interface SetUserCertificationAuditStatusInput {
    /** 审核Id */
    id?: string;
    auditStatus?: UserCertificationAuditStatusEnum;
    /** 审核备注 */
    auditNote?: string;
  }
  interface SetUserEnterpiseBaseInfoInput {
    enterpriseName?: string;
    societyCreditCode?: string;
    licenseUrl?: string;
  }
  interface SetUserEnterpriseBankInfoInput {
    bankName?: string;
    bankBranchName?: string;
    bankCardNumber?: string;
  }
  interface SetUserIndustrialParkInput {
@@ -18285,6 +18532,8 @@
  type TransAccountTypeEnum = 10 | 20;
  type TransferToStatusEnum = 1 | 2;
  interface TypeApiDescriptionModel {
    baseType?: string;
    isEnum?: boolean;
@@ -18333,6 +18582,7 @@
    companyOrgId?: string;
    /** 组织架构部门id */
    departmentOrgId?: string;
    password?: string;
    /** 用户Id */
    id?: string;
  }