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; }
|
|
}
|
}
|