Shuxia Ning
2024-08-28 1a8a81785470302fc7fbd6914a9df5d1094dac2a
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 AvgStatisticsViewModel
    {
        public AvgStatisticsViewModel() { }
        public AvgStatisticsViewModel(AvgStatisticsViewModel rhs)
        {
            this.MinTotalFlow = rhs.MinTotalFlow;
            this.MaxTotalFlow = rhs.MaxTotalFlow;
            this.RunCount = rhs.RunCount;
            this.RunFlags = rhs.RunFlags;
            this.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; }
 
    }
}