ningshuxia
2025-03-31 d321346f204a69b1929cc39098a5d88f44509e7b
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
using System.ComponentModel.DataAnnotations;
 
namespace IStation
{
    /// <summary>
    /// 
    /// </summary>
    public class AvgStatisticsDto
    {
        public AvgStatisticsDto() { }
        public AvgStatisticsDto(AvgStatisticsDto rhs)
        {
            MinTotalFlow = rhs.MinTotalFlow;
            MaxTotalFlow = rhs.MaxTotalFlow;
            RunCount = rhs.RunCount;
            RunFlags = rhs.RunFlags;
            TimeCount = rhs.TimeCount;
        }
 
        [Display(Name = "最小流量")]
        public double MinTotalFlow { get; set; }
 
        [Display(Name = "最大流量")]
        public double MaxTotalFlow { get; set; }
 
        [Display(Name = "运行数量")]
        public int RunCount { get; set; }
 
        [Display(Name = "运行组合")]
        public string RunFlags { get; set; }
 
        [Display(Name = "时间点数量")]
        public int TimeCount { get; set; }
 
    }
}