using Sln.Iot.Model.dao;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sln.Iot.Model.dto
{
public class MonitorAlarmDto
{
///
/// 设备编号
///
public string monitorId { get;set; }
///
/// 是否报警:1-是;0-否
///
public int isFlag { get;set; }
///
/// 设备参数
///
public RecordIotEnvInstant deviceParam { get;set; }
///
/// 告警规则
///
public List alarmRules { get;set; }
///
/// 报警内容
///
public List alarmContents { get;set; }
///
/// 记录时间
///
public long recordTime { get;set; }
}
}