wupengfei
3 天以前 89436385a31b0f31c33bb4688ab7c3b549ecc125
src/services/api/typings.d.ts
@@ -471,6 +471,7 @@
  interface AddParkBountyApplyByEnterpriseInput {
    batchNo?: string;
    enterpriseMonthApplyId?: string;
    enterpriseId?: string;
  }
  interface AddParkBountyApplyStepOneInput {
@@ -1429,9 +1430,23 @@
    take?: number;
  }
  interface APIgetDataBoardEnterpriseClientUserRankParams {
    /** 查询数量 */
    take?: number;
  }
  interface APIgetDataBoardInsurePeopleCountRankParams {
    /** 查询数量 */
    take?: number;
  }
  interface APIgetDataBoardLastQuarterEnterpriseClientUserCountParams {
    input?: GetDataBoardLastQuarterEnterpriseClientUserCountInput;
  }
  interface APIgetDataBoardLastQuarterOutputValueCountParams {
    /** 万元单位 */
    wanUnit?: boolean;
  }
  interface APIgetDataBoardNewBountyApplyCountParams {
@@ -1439,11 +1454,13 @@
  }
  interface APIgetDataBoardNewBountyReleaseAmountCountParams {
    input?: GetDataBoardNewBountyReleaseAmountCountInput;
    /** 万元单位 */
    wanUnit?: boolean;
  }
  interface APIgetDataBoardNewBountyUseAmountCountParams {
    input?: GetDataBoardNewBountyUseAmountCountInput;
    /** 万元单位 */
    wanUnit?: boolean;
  }
  interface APIgetDataBoardNewCustomerCountParams {
@@ -1454,7 +1471,17 @@
    input?: GetDataBoardNewInsurePeopleCountInput;
  }
  interface APIgetDataBoardOutputValueRankParams {
    /** 查询数量 */
    take?: number;
  }
  interface APIgetDataBoardOverviewByParkParams {
    industrialParkId?: string;
  }
  interface APIgetDataBoardOverviewByParkV2Params {
    /** 园区Id 不传查全部 */
    industrialParkId?: string;
  }
@@ -2052,6 +2079,10 @@
  interface APIqueryRechargeParams {
    bussSeqNo?: string;
  }
  interface APIreImportEnterpriseCustomerUsersReImportEnterpriseCustomerUsersIdParams {
    id: string;
  }
  interface APIsearchParams {
@@ -6519,6 +6550,8 @@
  interface ExportRewardStatisticsInput {
    /** 月份 */
    month?: string;
    /** 月份 */
    months?: string[];
    /** 所属园区Id */
    industrialParkId?: string;
    /** 关键字 */
@@ -7858,6 +7891,17 @@
    amount?: number;
  }
  interface GetDataBoardEnterpriseClientUserRankOutput {
    items?: GetDataBoardEnterpriseClientUserRankOutputItem[];
  }
  interface GetDataBoardEnterpriseClientUserRankOutputItem {
    /** 企业名称 */
    enterpriseName?: string;
    /** 签约人数 */
    count?: number;
  }
  interface GetDataBoardInsurePeopleCountRankOutput {
    items?: GetDataBoardInsurePeopleCountRankOutputItem[];
  }
@@ -7867,6 +7911,22 @@
    enterpriseName?: string;
    /** 人数 */
    count?: number;
  }
  type GetDataBoardLastQuarterEnterpriseClientUserCountInput = Record<string, any>;
  interface GetDataBoardLastQuarterEnterpriseClientUserCountOutput {
    /** X轴 */
    x?: string[];
    /** 上季度数据 */
    data?: number[];
  }
  interface GetDataBoardLastQuarterOutputValueCountOutput {
    /** X轴 */
    x?: string[];
    /** 上季度数据 */
    data?: number[];
  }
  type GetDataBoardNewBountyApplyCountInput = Record<string, any>;
@@ -7880,8 +7940,6 @@
    lastMonthData?: number[];
  }
  type GetDataBoardNewBountyReleaseAmountCountInput = Record<string, any>;
  interface GetDataBoardNewBountyReleaseAmountCountOutput {
    /** X轴 */
    x?: string[];
@@ -7890,8 +7948,6 @@
    /** 上月数据 */
    lastMonthData?: number[];
  }
  type GetDataBoardNewBountyUseAmountCountInput = Record<string, any>;
  interface GetDataBoardNewBountyUseAmountCountOutput {
    /** X轴 */
@@ -7922,6 +7978,17 @@
    data?: number[];
  }
  interface GetDataBoardOutputValueRankOutput {
    items?: GetDataBoardOutputValueRankOutputItem[];
  }
  interface GetDataBoardOutputValueRankOutputItem {
    /** 企业名称 */
    enterpriseName?: string;
    /** 金额 */
    outputValue?: number;
  }
  interface GetDataBoardOverviewByParkOutput {
    /** 总入驻企业 */
    totalCustomerCount?: number;
@@ -7929,6 +7996,23 @@
    sumBountyReleaseAmount?: number;
    /** 奖励金使用总额 */
    sumBountyUseAmount?: number;
    /** 投保人数 */
    insurePeopleCount?: number;
  }
  interface GetDataBoardOverviewByParkV2Output {
    /** 平台企业总数 */
    enterpriseCount?: number;
    /** 总交易流水 */
    sumOutputValue?: number;
    /** 在线甲方总数 */
    enterpriseCustomerCount?: number;
    /** 在线劳务人员总数 */
    enterpriseClientUserCount?: number;
    /** 平台消费总额 */
    sumBountyUseAmount?: number;
    /** 保险消费总额 */
    sumBountyInsuranceUseAmount?: number;
    /** 投保人数 */
    insurePeopleCount?: number;
  }
@@ -7991,6 +8075,49 @@
    errmsg?: string;
    cost?: string;
    data?: GetEnterpriseCredentialDataResponse;
  }
  interface GetEnterpriseCustomerImportsInput {
    pageModel?: Pagination;
    /** 关键字 */
    keywords?: string;
    /** 导入失败的记录 */
    failImport?: boolean;
  }
  interface GetEnterpriseCustomerImportsOutput {
    /** Id */
    id?: string;
    /** 企业Id */
    enterpriseId?: string;
    /** 文件 */
    file?: string;
    /** 总行数 */
    count?: number;
    /** 成功行数 */
    successCount?: number;
    /** 空白行数 */
    emptyCount?: number;
    /** 失败行数 */
    failCount?: number;
    /** 失败原因 */
    failReason?: string;
    /** 预计保存数量 */
    estimateSaveCount?: number;
    /** 保存数量 */
    saveCount?: number;
    /** 插入数量 */
    insertCount?: number;
    /** 更新数量 */
    updateCount?: number;
    /** 更新文件地址 */
    updateFile?: string;
  }
  interface GetEnterpriseCustomerImportsOutputPageOutput {
    pageModel?: Pagination;
    objectData?: any;
    data?: GetEnterpriseCustomerImportsOutput[];
  }
  interface GetEnterpriseDrawWithDetailOutput {
@@ -8087,6 +8214,10 @@
    pageModel?: Pagination;
    objectData?: any;
    data?: GetEnterpriseMonthApplyFileOutput[];
  }
  interface GetEnterpriseMonthApplyHasUploadFileListInput {
    enterpriseId?: string;
  }
  interface GetEnterpriseParkApplyUploadFileOutput {
@@ -9618,6 +9749,8 @@
    outReCheckTime?: string;
    /** 撤回原因 */
    reasonForWithdrawal?: string;
    /** 是否隐藏 */
    isHidden?: boolean;
  }
  interface GetParkBountyApplyListOutputPageOutput {