export interface MapList { id: string; _tenantId: string; _projectId: string; modelType: string; name: string; fileName: string; status: string; mapInfo: MapInfo; canDeleted: boolean; choiced: boolean; } export interface MapInfo { fileId: number; status: string; viewToken: string; url?: string; } export interface UploadMapFile { name: string; fileName: string; status: string; mapInfo: UploadMapInfo; } export interface UploadMapInfo { url: string; width?: number; height?: number; }