zhengyiming
8 天以前 92921431668181fb6d3387368c751ccc40aba8cf
src/services/api/typings.d.ts
@@ -1424,6 +1424,44 @@
    templateId?: string;
  }
  interface APIgetDataBoardBountyUseAmountRankParams {
    /** 查询数量 */
    take?: number;
  }
  interface APIgetDataBoardInsurePeopleCountRankParams {
    /** 查询数量 */
    take?: number;
  }
  interface APIgetDataBoardNewBountyApplyCountParams {
    input?: GetDataBoardNewBountyApplyCountInput;
  }
  interface APIgetDataBoardNewBountyReleaseAmountCountParams {
    input?: GetDataBoardNewBountyReleaseAmountCountInput;
  }
  interface APIgetDataBoardNewBountyUseAmountCountParams {
    input?: GetDataBoardNewBountyUseAmountCountInput;
  }
  interface APIgetDataBoardNewCustomerCountParams {
    input?: GetDataBoardNewCustomerCountInput;
  }
  interface APIgetDataBoardNewInsurePeopleCountParams {
    input?: GetDataBoardNewInsurePeopleCountInput;
  }
  interface APIgetDataBoardOverviewByParkParams {
    industrialParkId?: string;
  }
  interface APIgetDataBoardOverviewParams {
    input?: GetDataBoardOverviewInput;
  }
  interface APIgetDefaultConnectionStringParams {
    id?: string;
  }
@@ -7800,12 +7838,118 @@
    /** 奖励金模板Id */
    bountyTemplateId?: string;
    userId?: string;
    isApply?: boolean;
  }
  interface GetCustomerUploadFileRecordOutput {
    id?: string;
  }
  interface GetDataBoardBountyUseAmountRankOutput {
    items?: GetDataBoardBountyUseAmountRankOutputItem[];
  }
  interface GetDataBoardBountyUseAmountRankOutputItem {
    /** 企业名称 */
    enterpriseName?: string;
    /** 金额 */
    amount?: number;
  }
  interface GetDataBoardInsurePeopleCountRankOutput {
    items?: GetDataBoardInsurePeopleCountRankOutputItem[];
  }
  interface GetDataBoardInsurePeopleCountRankOutputItem {
    /** 企业名称 */
    enterpriseName?: string;
    /** 人数 */
    count?: number;
  }
  type GetDataBoardNewBountyApplyCountInput = Record<string, any>;
  interface GetDataBoardNewBountyApplyCountOutput {
    /** X轴 */
    x?: string[];
    /** 当月数据 */
    currentMonthData?: number[];
    /** 上月数据 */
    lastMonthData?: number[];
  }
  type GetDataBoardNewBountyReleaseAmountCountInput = Record<string, any>;
  interface GetDataBoardNewBountyReleaseAmountCountOutput {
    /** X轴 */
    x?: string[];
    /** 当月数据 */
    currentMonthData?: number[];
    /** 上月数据 */
    lastMonthData?: number[];
  }
  type GetDataBoardNewBountyUseAmountCountInput = Record<string, any>;
  interface GetDataBoardNewBountyUseAmountCountOutput {
    /** X轴 */
    x?: string[];
    /** 当月数据 */
    currentMonthData?: number[];
    /** 上月数据 */
    lastMonthData?: number[];
  }
  type GetDataBoardNewCustomerCountInput = Record<string, any>;
  interface GetDataBoardNewCustomerCountOutput {
    /** X轴 */
    x?: string[];
    /** 当月数据 */
    currentMonthData?: number[];
    /** 上月数据 */
    lastMonthData?: number[];
  }
  type GetDataBoardNewInsurePeopleCountInput = Record<string, any>;
  interface GetDataBoardNewInsurePeopleCountOutput {
    /** X轴 */
    x?: string[];
    /** 数据 */
    data?: number[];
  }
  interface GetDataBoardOverviewByParkOutput {
    /** 总入驻企业 */
    totalCustomerCount?: number;
    /** 奖励金发放总额 */
    sumBountyReleaseAmount?: number;
    /** 奖励金使用总额 */
    sumBountyUseAmount?: number;
    /** 投保人数 */
    insurePeopleCount?: number;
  }
  type GetDataBoardOverviewInput = Record<string, any>;
  interface GetDataBoardOverviewOutput {
    /** 总入驻企业 */
    totalCustomerCount?: number;
    /** 总申报数量 */
    totalBountyApplyCount?: number;
    /** 奖励金发放总额 */
    sumBountyReleaseAmount?: number;
    /** 奖励金使用总额 */
    sumBountyUseAmount?: number;
    /** 当月发放额 */
    currentMonthSumBountyReleaseAmount?: number;
    /** 当月使用额 */
    currentMonthSumBountyUseAmount?: number;
    /** 当月投保人数 */
    currentMonthInsurePeopleCount?: number;
  }
  interface GetEnterpriseBuntyTradeDto {
    id?: string;
    payDateTime?: string;