namespace Yw.Application.Health { /// /// /// public class MonitorPointOnlineLogicDto { /// /// /// public MonitorPointOnlineLogicDto() { this.SignalList = new List(); } /// /// /// public MonitorPointOnlineLogicDto(Model.MonitorPoint rhs) : this() { this.ID = rhs.ID; this.Name = rhs.Name; this.SourceType = rhs.SourceType; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// id /// public long ID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 来源类型 /// public Monitor.eSourceType SourceType { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 信号列表 /// public List SignalList { get; set; } } }