using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace LangGuan.Command.Model.EntityModel { /// /// 报警 /// public class Alert : BaseModel { /// /// deviceId /// public string deviceId { get; set; } /// /// 别名 /// public string NickName { get; set; } /// /// 内容 /// public string content { get; set; } } }