namespace Yw.Application.Health
{
///
///
///
public class MonitorPointBindingLogicDto
{
///
///
///
public MonitorPointBindingLogicDto() { }
///
///
///
public MonitorPointBindingLogicDto(Model.MonitorPoint rhs)
{
this.ID = rhs.ID;
this.Name = rhs.Name;
this.SourceType = rhs.SourceType;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
this.SignalList = new List();
}
///
/// 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; }
}
}