namespace IStation.Server { /// /// 能效设备分析上下文项 /// public class EpEtaEnginePumpAnalyContextItem { /// /// /// public EpEtaEnginePumpAnalyContextItem() { } /// /// /// public EpEtaEnginePumpAnalyContextItem(Yw.Model.Equipment rhs) { this.ID = rhs.ID; this.Name = rhs.Name; this.NO = rhs.NO; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// id /// public long ID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编号 /// public string NO { get; set; } /// /// 排序 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 水泵上下文项 /// public EpEtaPumpAnalyContextItem PumpContextItem { get; set; } /// /// 监测分析上下文项列表 /// public List MonitorContextItemList { get; set; } } }