using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.Application { /// /// AlarmLevel Dto /// public class AlarmLevelDto { /// /// 标识 /// public long ID { get; set; } /// /// 公司标识 /// public long CorpID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 显示颜色 /// public string Color { get; set; } /// /// 报警等级 /// public int Grade { get; set; } /// /// 说明 /// public string Description { get; set; } } }