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
|
{
|
/// <summary>
|
/// 能效单一实时记录(纯净)
|
/// </summary>
|
public partial class EtaSingleRealRecordPure:EtaBasicRealRecord
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public EtaSingleRealRecordPure() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
public EtaSingleRealRecordPure(EtaSingleRealRecordPure rhs):base(rhs)
|
{
|
this.RSa=rhs.RSa;
|
this.HZa=rhs.HZa;
|
}
|
|
|
/// <summary>
|
/// 运行状态(分析结果)
|
/// </summary>
|
public int RSa { get; set; }
|
|
/// <summary>
|
/// 分析频率
|
/// </summary>
|
public double HZa { get; set; }
|
|
|
/// <summary>
|
/// 设置关机泵
|
/// </summary>
|
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;
|
}
|
|
|
|
}
|
|
}
|