import type { InputProps } from 'antd'; import type { CorpBaseQuery, CorpDetailQuery } from './gql'; export interface IdentificationNumberProps extends InputProps { /** 获取的基础的信息 */ onGetCorpBase?: (data: CorpBaseQuery['CorpBase']) => void; /** 获取的详细的信息 */ onGetCorpDetail?: (data: CorpDetailQuery['CorpDetail']) => void; }