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 CsqRecord : AggregateRoot { public CsqRecord(string areaCode,string address,int deviceType,string csq) { AreaCode = areaCode; Address = address; DeviceType = deviceType; Csq = csq; } /// /// 区域编号 /// public string AreaCode { get; set; } /// /// 区域地址 /// public string Address { get; set; } /// /// 1电表 2水表 3集中器 /// public int DeviceType { get; set; } /// /// 信号强度 /// public string Csq { get; set; } } }