ningshuxia
2025-04-03 4917fb959e2befec07a693e72d7010c09494ec7c
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
using System;
 
namespace IStation.Model
{
    public class StationStatisticalRecord
    {
        public StationStatisticalRecord() { }
        public StationStatisticalRecord(Model.StationStatisticalRecord rhs)
        {
            Time = rhs.Time;
            TotalFlow = rhs.TotalFlow;
            TotalHead = rhs.TotalHead;
            PumpRunCount = rhs.PumpRunCount;
            PumpRunFlags = rhs.PumpRunFlags;
        }
 
        /// <summary>
        /// 时间
        /// </summary>
        public DateTime Time { get; set; }
 
        /// <summary>
        /// 总流量
        /// </summary>
        public double TotalFlow { get; set; }
 
        /// <summary>
        /// 总扬程
        /// </summary>
        public double TotalHead { get; set; }
 
        /// <summary>
        /// 泵运行数量
        /// </summary>
        public int PumpRunCount { get; set; }
 
        /// <summary>
        /// 泵运行标志
        /// </summary>
        public string PumpRunFlags { get; set; }
 
    }
}