export interface IVideoSurveillance { id: string; createdAt: number; widgetTag: string; projectId: string; widgetName: string; screenMode: string; multiScreenNum: number; multiShowAI: boolean; cameras: CameraList[]; camera: CameraList; } export interface CameraList { deviceId: string; deviceName: string; isAi: boolean; isLive: boolean; cloudControl: boolean; showAI: boolean; autoPlay: boolean; playBack: boolean; } export interface IListCameras { id: string; name: string; isAi: boolean; type: string; online: boolean; controllable: boolean; status: string; }