ningshuxia
2024-05-27 f51ccee7e76f598c1f718190d216f96b5ea1ca46
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
namespace IStation.Entity
{
    /// <summary>
    /// 
    /// </summary>
    public class SchedulePump : BaseEntity, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public SchedulePump() { }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="rhs"></param>
        public SchedulePump(SchedulePump rhs) : base(rhs)
        {
            this.RequestID = rhs.RequestID;
            this.Station = rhs.Station;
            this.Flag = rhs.Flag;
            this.Flow = rhs.Flow;
            this.Head = rhs.Head;
            this.Power = rhs.Power;
            this.Efficiency = rhs.Efficiency;
            this.Frequency = rhs.Frequency;
            this.Speed = rhs.Speed;
        }
 
        /// <summary>
        /// 调度请求标识
        /// </summary>
        public long RequestID { get; set; }
 
        /// <summary>
        /// 泵站
        /// </summary>
        public int Station { get; set; }
 
        /// <summary>
        /// 运行标志
        /// </summary>
        public int Flag { get; set; }
 
        /// <summary>
        /// 总流量
        /// </summary>
        public double Flow { get; set; }
 
        /// <summary>
        /// 总扬程
        /// </summary>
        public double Head { get; set; }
 
        /// <summary>
        /// 总功率
        /// </summary>
        public double Power { get; set; }
 
        /// <summary>
        /// 总效率
        /// </summary>
        public double Efficiency { get; set; }
 
        /// <summary>
        /// 频率
        /// </summary>
        public double Frequency { get; set; }
 
        /// <summary>
        /// 转速
        /// </summary>
        public double Speed { get; set; }
 
 
        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        public SchedulePump Clone()
        {
            return (SchedulePump)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
    }
 
}