export type Maybe = T | null; export type InputMaybe = Maybe; export type Exact = { [K in keyof T]: T[K]; }; export type MakeOptional = Omit & { [SubKey in K]?: Maybe; }; export type MakeMaybe = Omit & { [SubKey in K]: Maybe; }; export type Scalars = { ID: string; String: string; Boolean: boolean; Int: number; Float: number; BigDecimal: number; Date: number; DateTime: number; Instant: any; Long: number; Object: any; Short: any; }; export declare const enum CorpRegisterStatus { /** 异常 */ Abnormal = "ABNORMAL", /** 注销 */ Logout = "LOGOUT", /** 存续 */ Subsist = "SUBSIST", /** 未知 */ Unrecognized = "UNRECOGNIZED" } export declare const enum TaxpayerClassEnum { /** 一般纳税人 */ GeneralTaxpayers = "GENERAL_TAXPAYERS", /** 增值税小规模纳税人 */ SmallScaleTaxpayers = "SMALL_SCALE_TAXPAYERS", /** 未知 */ Unrecognized = "UNRECOGNIZED" } export type CorpDetailInput = { /** 搜索关键字(企业名称、统一社会信用代码、注册号) */ keyword?: InputMaybe; }; export type CorpBaseQuery = { CorpBase?: { __typename?: 'CorpBasePayload'; creditCode?: string; name?: string; no?: string; operName?: string; }; }; export type CorpBaseQueryVariables = Exact<{ input?: InputMaybe; }>; export type CorpDetailQuery = { CorpDetail?: { __typename?: 'CorpDetailPayload'; address?: string; annualAddress?: string; creditCode?: string; englishName?: string; name?: string; no?: string; operName?: string; registCapi?: string; scope?: string; startDate?: number; status?: CorpRegisterStatus; taxNo?: string; taxpayerType?: TaxpayerClassEnum; area?: { __typename?: 'CorpArea'; city?: string; county?: string; province?: string; }; bankInfo?: { __typename?: 'CorpBackInfo'; address?: string; bank?: string; bankAccount?: string; creditCode?: string; name?: string; tel?: string; }; contactInfo?: { __typename?: 'CorpContactInfo'; email?: string; tel?: string; webSiteList?: Array; moreEmailList?: Array<{ __typename?: 'CorpEmail'; email?: string; source?: string; }>; moreTelList?: Array<{ __typename?: 'CorpTel'; source?: string; tel?: string; }>; }; longLat?: { __typename?: 'CorpLongLat'; latitude?: number; longitude?: number; }; }; }; export type CorpDetailQueryVariables = Exact<{ input?: InputMaybe; }>; export declare const CorpBaseDocument: import("@apollo/client").DocumentNode; export declare const CorpDetailDocument: import("@apollo/client").DocumentNode;