using System;
|
|
namespace IStation.Entity
|
{
|
/// <summary>
|
/// 曲线分析能效结论
|
/// </summary>
|
public class CurveAnaRunResult : BaseModel
|
{
|
public CurveAnaRunResult() { }
|
public CurveAnaRunResult(CurveAnaRunResult rhs) : base(rhs)
|
{
|
this.Id = rhs.Id;
|
this.AnaSchemeId = rhs.AnaSchemeId;
|
this.Year = rhs.Year;
|
this.Month = rhs.Month;
|
this.RunningCount = rhs.RunningCount;
|
this.RunningFlag = rhs.RunningFlag;
|
this.MaxTime = rhs.MaxTime;
|
this.MinTime = rhs.MinTime;
|
this.TotalPointCount = rhs.TotalPointCount;
|
this.AnaPointCount = rhs.AnaPointCount;
|
this.UsePointCount = rhs.UsePointCount;
|
}
|
|
public void Reset(CurveAnaRunResult rhs)
|
{
|
this.Id = rhs.Id;
|
this.AnaSchemeId = rhs.AnaSchemeId;
|
this.Year = rhs.Year;
|
this.Month = rhs.Month;
|
this.RunningCount = rhs.RunningCount;
|
this.RunningFlag = rhs.RunningFlag;
|
this.MaxTime = rhs.MaxTime;
|
this.MinTime = rhs.MinTime;
|
this.TotalPointCount = rhs.TotalPointCount;
|
this.AnaPointCount = rhs.AnaPointCount;
|
this.UsePointCount = rhs.UsePointCount;
|
}
|
|
/// <summary>
|
/// 分析方案Id
|
/// </summary>
|
public long AnaSchemeId { get; set; }
|
|
/// <summary>
|
/// 年份
|
/// </summary>
|
public int Year { get; set; }
|
|
/// <summary>
|
/// 月份
|
/// </summary>
|
public int Month { get; set; }
|
|
/// <summary>
|
/// 运行数量
|
/// </summary>
|
public int RunningCount { get; set; }
|
|
/// <summary>
|
/// 运行标志
|
/// </summary>
|
public int RunningFlag { get; set; }
|
|
/// <summary>
|
/// 最大时间
|
/// </summary>
|
public DateTime MaxTime { get; set; }
|
|
/// <summary>
|
/// 最小时间
|
/// </summary>
|
public DateTime MinTime { get; set; }
|
|
/// <summary>
|
/// 总点数
|
/// </summary>
|
public int TotalPointCount { get; set; }
|
|
/// <summary>
|
/// 可分析总点数
|
/// </summary>
|
public int AnaPointCount { get; set; }
|
|
/// <summary>
|
/// 使用点数量
|
/// </summary>
|
public int UsePointCount { get; set; }
|
|
}
|
}
|