using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Volo.Abp.Domain.Entities; namespace JiShe.CollectBus.IotSystems.Records { /// /// 集中器在线记录 /// public class ConrOnlineRecord : AggregateRoot { public ConrOnlineRecord(string areaCode,string address,bool state,DateTime lastTime) { AreaCode = areaCode; Address = address; State = state; LastTime = lastTime; } /// /// 区域编号 /// public string AreaCode { get; set; } /// /// 区域地址 /// public string Address { get; set; } /// /// 是否在线 /// public bool State { get; set; } /// /// 在/离线时间 /// public DateTime LastTime { get; set; } } }