export interface SMAlarmType { code: string; type: string; hasExist: boolean; } export interface SMAlarmTypePosition { position: string; hasExist: boolean; } export interface SMRulesList { id?: string; projectId?: string; deviceId: string; deviceName: string; type: string; code: string; position: string; warningValue: number; alarmValue: number; enable: boolean; message: string; }