export interface VehicleInfo { id?: string; spaceIds?: string[]; licencePlate?: string; brand?: string[]; series?: string; type?: string; vehicleColor?: string; licencePlateColor?: string; remark?: string; identityNumber?: string; contact?: string; name?: string; displayImage?: string; principal?: { name?: string; contact?: string; identityNumber?: string; }; [key: string]: any; } export interface PersonnelInfo { id?: string; spaceId?: string; // 关联的区域id spaceIds?: string[]; name?: string; contact?: string; gender?: 'M' | 'F'; // 人员性别 image?: string; // 人员照片 faceId?: string; // 人脸id certificateType?: string; // 证件类型 certificateNumber?: string; // 证件号码 nation?: string; // 民族 maritalStatus?: string; // 婚姻情况 educationLevel?: string; // 受教育程度 career?: string; // 职业 nativePlace?: any; // 籍贯id nativePlaceAddress?: string; // 籍贯地址 address?: string; // 人员地址 notes?: string; // 人员信息额外字段 extraData: { [key: string]: any; }; [key: string]: any; }