using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiShe.CollectBus.EnergySystem.Dto { /// /// 记录信号强度 /// public class AddSignalStrengthInput { /// /// 区域编号 /// public string AreaCode { get; set; } /// /// 区域地址 /// public string Address { get; set; } /// /// 1电表 2水表 3集中器 /// public int DeviceType { get; set; } /// /// 信号强度 /// public string Csq { get; set; } } }