lixiaojun
2023-04-12 2be5d90e96f163c67101571f6865b17effcb0f3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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;
        }
 
 
 
    }
 
}