zhengyiming
2 天以前 64eb1c2ebfc25f11f5757a0eef04de230fa8fa15
src/services/api/typings.d.ts
@@ -249,7 +249,7 @@
    /** 是否支持财政拨付 */
    suportFinance?: boolean;
    /** 文件 */
    industrialParkApplyFileFile?: IndustrialParkApplyFileFile[];
    bountTemplates?: AddIndustrialParkInputBountTemplate[];
    /** 无需政务端审核 */
    notNeedGovernmentAudit?: boolean;
    /** 无需运营端审核 */
@@ -258,6 +258,15 @@
    dualReviewOfGovernmentAffairs?: boolean;
    /** 公司信息 */
    industrialParkCompanyFile?: IndustrialParkCompanyFile[];
  }
  interface AddIndustrialParkInputBountTemplate {
    /** 模板Id */
    templateId?: string;
    /** 模板名称 */
    templateName?: string;
    /** 文件 */
    items?: IndustrialParkApplyFileFile[];
  }
  interface AddIndustryBodyAuditInput {
@@ -467,6 +476,8 @@
  interface AddParkBountyApplyStepOneInput {
    batchNo?: string;
    parkId?: string;
    /** 奖励金模板Id */
    bountyTemplateId?: string;
    applyMonth?: string;
    removeCompanyIds?: string[];
  }
@@ -1398,6 +1409,7 @@
  interface APIgetCustomerFileTypeHeadParams {
    enterpriseId?: string;
    templateId?: string;
  }
  interface APIgetCustomerTemplateDetailParams {
@@ -1410,6 +1422,44 @@
  interface APIgetCustomerTemplateParamListByTemplateIdParams {
    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 {
@@ -5851,6 +5901,8 @@
    applyAmount?: number;
    fileTypes?: CustomerUploadMonthApplyFileType[];
    enterpriseId?: string;
    /** 奖励金模板Id */
    bountyTemplateId?: string;
    /** 是否是运营端代上传 */
    isAdminFileUpload?: boolean;
  }
@@ -5880,6 +5932,8 @@
    applyAmount?: number;
    fileTypes?: CustomerUploadMonthApplyFileType[];
    enterpriseId?: string;
    /** 奖励金模板Id */
    bountyTemplateId?: string;
    /** 是否是运营端代上传 */
    isAdminFileUpload?: boolean;
    /** 汇总材料 */
@@ -6433,6 +6487,8 @@
  type EnumSmsStatus = 0 | 10 | 20 | 30;
  type EnumWalletSignStatus = 1 | 10 | 100 | 999;
  type EnumWalletTransactionStatus = 1 | 10 | 20 | 30 | 40 | 50;
  interface ExportBountyApplyData {
    /** 企业名称 */
@@ -7492,6 +7548,11 @@
    endDate?: string;
  }
  interface GetCurrentExternalSystemOutput {
    /** 是否签约钱包 */
    isSignWallet?: boolean;
  }
  interface GetCustomContractParamterListInput {
    pageModel?: Pagination;
    /** 客户Id */
@@ -7717,6 +7778,8 @@
  interface GetCustomerUploadApplyFilesInput {
    id?: string;
    enterpriseId?: string;
    /** 奖励金模板Id */
    bountyTemplateId?: string;
    userId?: string;
    withMonth?: string;
    parkBountyApplyId?: string;
@@ -7741,6 +7804,8 @@
  interface GetCustomerUploadApplyFilesResponse {
    /** 所属月份 */
    withMonth?: string;
    /** 奖励金模板Id */
    bountyTemplateId?: string;
    /** 企业名称 */
    enterpriseName?: string;
    /** 申报金额 */
@@ -7754,6 +7819,8 @@
  interface GetCustomerUploadApplyFilesV2Response {
    /** 所属月份 */
    withMonth?: string;
    /** 奖励金模板Id */
    bountyTemplateId?: string;
    /** 企业名称 */
    enterpriseName?: string;
    /** 申报金额 */
@@ -7770,11 +7837,119 @@
  interface GetCustomerUploadFileRecordInput {
    withMonth?: string;
    /** 奖励金模板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 {
@@ -7831,6 +8006,13 @@
    amount?: number;
    remainAmount?: number;
    invoiceUrl?: string;
    transactionStatus?: EnumWalletTransactionStatus;
    /** 订单支付时间 */
    transactionDate?: string;
    /** 查询到的订单状态为FAIL失败或REFUND退票时,返回错误代码 */
    transactionErrorCode?: string;
    /** 查询到的订单状态为FAIL失败或REFUND退票时,返回具体的原因。 */
    transactionFailReason?: string;
    checkStatus?: EnterpriseRechargeStatusEnum;
    checkTime?: string;
    checkUserId?: string;
@@ -7861,7 +8043,15 @@
    parkType?: string;
    amount?: number;
    remainAmount?: number;
    transactionStatus?: EnumWalletTransactionStatus;
    /** 订单支付时间 */
    transactionDate?: string;
    /** 查询到的订单状态为FAIL失败或REFUND退票时,返回错误代码 */
    transactionErrorCode?: string;
    /** 查询到的订单状态为FAIL失败或REFUND退票时,返回具体的原因。 */
    transactionFailReason?: string;
    checkStatus?: EnterpriseRechargeStatusEnum;
    status?: GetEnterpriseDrawWithListOutputStatus;
    checkTime?: string;
    checkRemark?: string;
    checkFileUrl?: string;
@@ -7874,6 +8064,8 @@
    objectData?: any;
    data?: GetEnterpriseDrawWithListOutput[];
  }
  type GetEnterpriseDrawWithListOutputStatus = 10 | 20 | 21 | 22 | 30;
  interface GetEnterpriseMonthApplyFileOutput {
    id?: string;
@@ -8210,6 +8402,21 @@
    categoryId?: string;
    /** 查询条件:产品名称/服务商名称 */
    queryCondition?: string;
  }
  interface GetIndustrialPartBountyTemplatesInput {
    /** 园区Id */
    id?: string;
  }
  interface GetIndustrialPartBountyTemplatesOutput {
    /** 奖励金模板名称 */
    bountyTemplates?: GetIndustrialPartBountyTemplatesOutputItem[];
  }
  interface GetIndustrialPartBountyTemplatesOutputItem {
    id?: string;
    templateName?: string;
  }
  interface GetInformationAdvertiseByCategoryInput {
@@ -9493,6 +9700,13 @@
    auditRemark?: string;
    /** 审核时间 */
    auditTime?: string;
    transactionStatus?: EnumWalletTransactionStatus;
    /** 订单支付时间 */
    transactionDate?: string;
    /** 查询到的订单状态为FAIL失败或REFUND退票时,返回错误代码 */
    transactionErrorCode?: string;
    /** 查询到的订单状态为FAIL失败或REFUND退票时,返回具体的原因。 */
    transactionFailReason?: string;
    financeAuditStatus?: EnumParkBountyTradeDetailAuditStatus;
    /** 财务审核备注 */
    financeAuditRemark?: string;
@@ -9600,6 +9814,8 @@
  interface GetParkCollectFileTypeListInput {
    parkId?: string;
    /** 奖励金模板Id */
    bountyTemplateId?: string;
    searchType?: number;
  }
@@ -10425,6 +10641,10 @@
    sort?: number;
    /** 签名名称 */
    signName?: string;
  }
  interface GetSystemInfoOutput {
    openTwoFactorLogin?: boolean;
  }
  interface GetTagsInput {
@@ -11361,6 +11581,15 @@
    timeZoneName?: string;
  }
  interface IdentityModelToken {
    accessToken?: string;
    expiresIn?: number;
    creationTime?: string;
    refreshToken?: string;
    /** 用户Id */
    userId?: string;
  }
  interface IdentityModelTokenCacheItem {
    accessToken?: string;
    expiresIn?: number;
@@ -11720,8 +11949,18 @@
    registerAddress?: string;
    /** 备注 */
    remark?: string;
    industrialParkFileTypeList?: IndustrialParkFileTypeOutput[];
    /** 奖励金模板 */
    bountyTemplates?: IndustrialParkDetailOutputFileTypeTemplate[];
    industrialParkCompanyList?: IndustrialParkCompanyOutput[];
  }
  interface IndustrialParkDetailOutputFileTypeTemplate {
    /** 模板Id */
    templateId?: string;
    /** 模板名称 */
    templateName?: string;
    /** 材料 */
    items?: IndustrialParkFileTypeOutput[];
  }
  interface IndustrialParkDropDownOutput {
@@ -16654,6 +16893,10 @@
  interface OutCheckParkBountyApplyBaseInfo {
    /** 申请批次号 */
    batchNo?: string;
    /** 奖励金模板 */
    bountyTemplateId?: string;
    /** 奖励金模板名称 */
    bountyTemplateName?: string;
    /** 申请园区Id */
    parkId?: string;
    /** 申请园区 */
@@ -16803,6 +17046,10 @@
  interface ParkBountyApplyBaseInfo {
    /** 申请批次号 */
    batchNo?: string;
    /** 模板Id */
    bountyTemplateId?: string;
    /** 模板名称 */
    bountyTemplateName?: string;
    /** 申请园区Id */
    parkId?: string;
    /** 申请园区 */
@@ -22577,6 +22824,33 @@
  type TransferToStatusEnum = 1 | 2;
  interface TwoFactorLoginPasswordInput {
    clientId?: string;
    /** 登录名 */
    loginName: string;
    /** 登录密码 */
    password: string;
  }
  interface TwoFactorLoginPasswordOutput {
    /** 登录密钥 */
    loginKey?: string;
    /** 手机号 */
    phoneNumber?: string;
  }
  interface TwoFactorLoginSendVerificationCodeInput {
    /** 登录密钥 */
    loginKey?: string;
  }
  interface TwoFactorLoginSmsInput {
    /** 登录密钥 */
    loginKey?: string;
    /** 验证码 */
    code?: string;
  }
  interface TypeApiDescriptionModel {
    baseType?: string;
    isEnum?: boolean;
@@ -22894,7 +23168,7 @@
    /** 是否支持财政拨付 */
    suportFinance?: boolean;
    /** 文件 */
    industrialParkApplyFileFile?: IndustrialParkApplyFileFile[];
    bountTemplates?: AddIndustrialParkInputBountTemplate[];
    /** 无需政务端审核 */
    notNeedGovernmentAudit?: boolean;
    /** 无需运营端审核 */
@@ -23172,7 +23446,6 @@
  }
  interface UpdateParkBountyApplyByEnterpriseInput {
    batchNo?: string;
    enterpriseMonthApplyId?: string;
  }
@@ -23583,6 +23856,8 @@
    fileSearchTypeId?: string;
    listFiles?: CustomerUploadMonthApplyFileTypeDto[];
    enterpriseId?: string;
    /** 奖励金模板Id */
    bountyTemplateId?: string;
  }
  interface UploadParkApplyCustomerFilesInput {
@@ -25720,6 +25995,8 @@
    iv: string;
    /** 获取会话密钥 */
    sessionKey: string;
    /** 鉴权 */
    sign?: string;
    /** 小程序OpenId */
    openId: string;
    wxMiniApp?: WxMiniAppEnum;
@@ -25732,6 +26009,8 @@
    iv: string;
    /** 获取会话密钥 */
    sessionKey: string;
    /** 鉴权 */
    sign?: string;
    /** 小程序OpenId */
    openId: string;
    wxMiniApp?: WxMiniAppEnum;