namespace IStation.Application.SZJT
{
///
///
///
public class RunAnalySpanChunkDto
{
///
///
///
public RunAnalySpanChunkDto() { }
///
///
///
public RunAnalySpanChunkDto(int runStatus, DateTime startTime, DateTime endTime, double duration)
{
this.RunStatus = runStatus;
this.StartTime = startTime;
this.EndTime = endTime;
this.Duration = Math.Round(duration, 0);
}
///
/// 运行状态
///
public int RunStatus { get; set; }
///
/// 开始时间
///
public DateTime StartTime { get; set; }
///
/// 结束时间
///
public DateTime EndTime { get; set; }
///
/// 持续时间(秒)
///
public double Duration { get; set; }
}
}