import { Base, Id } from '../../utils'; export type SourceType = 'SITE_UNIONFAB' | 'SITE_OVERSEA'; export interface UserInfo { id: Id; tenantId: string; personId: string; username: string; nickname: string; person: PersonInfo; } export interface PersonInfo { id: Id; username: string; nickname: string; phoneNumber: string; email: string; source: SourceType; } export interface InfoQueryParams { searchText?: string; /** 是否跟进 */ followUpStatus?: boolean; pageNum: number; pageSize: number; asc?: boolean; } export declare class InfoItem extends Base { key: string | number; id: string; name: string; email: string; phoneNumber: string; company: string; interest: string; customerRemark: string; fileIds: string[]; followUpRemark: string; followUpStatus: boolean; leaveContactInfoTime: string; } export interface PaginationMeta { pageNum: number; totalElements: number; totalPages: number; pageSize: number; }