using System; using System.Collections.Generic; namespace IBox.WinFrmUI { /// /// /// public class StationMonitorListItemMobileDto { /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 信号id /// public long SignalID { get; set; } public long SignalTypeID { get; set; } /// /// 格式类型 /// public eFormatType FormatType { get; set; } /// /// 数据值 /// public string DataValue { get; set; } public DateTime? DataTime { get; set; } /// /// 单位名称 /// public string UnitName { get; set; } /// /// 数据状态 /// public eDataStatus DataStatus { get; set; } /// /// 排序码 /// public int SortCode { get; set; } public string Flags { get; set; } /// /// 说明 /// public string Description { get; set; } public string BusAddress { get; set; } public int BusType { get; set; } public bool IsEnable { get; set; } public int? Operator { get; set; } public string Operands { get; set; } public int Accuracy { get; set; } public int AdcType { get; set; } public decimal UpperRange { get; set; } public decimal LowerRange { get; set; } } }