using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using System.ComponentModel.DataAnnotations; using System.Linq; namespace IStation.Model { /// /// 能效单一实时记录(纯净) /// public partial class EtaSingleRealRecordPure:EtaBasicRealRecord { /// /// /// public EtaSingleRealRecordPure() { } /// /// /// public EtaSingleRealRecordPure(EtaSingleRealRecordPure rhs):base(rhs) { this.RSa=rhs.RSa; this.HZa=rhs.HZa; } /// /// 运行状态(分析结果) /// public int RSa { get; set; } /// /// 分析频率 /// public double HZa { get; set; } /// /// 设置关机泵 /// public void SetShutDownStatus() { this.RSa = IStation.RunStatus.Shut;//关机 this.Qa = 0; this.Ha = 0; this.Pa = 0; this.Ea = 0; this.UWPa = 0; this.WPa = 0; this.HZa = 0; this.AnalyStatus = Model.Eta.eAnalyStatus.Normal; } } }