export interface IAntiOverTurnInfo { deviceId: string; deviceType: string; online?: boolean; alarmStatus?: number; // 报警状态 0-正常;1-报警(只关联6种报警) tiltLeft?: number; // 左侧倾斜报警 tiltRight?: number; // 右侧倾斜报警 angle?: string; // 倾斜角度 direction?: string; // 倾斜方向 取值范围[0,360] 朝向大臂为0 warnings: string[]; }