31 lines
963 B
C#
31 lines
963 B
C#
using System.Collections.Generic;
|
|
|
|
namespace HL_FristAidPlatform_Help
|
|
{
|
|
public class ReprotModel
|
|
{
|
|
public List<ReprotMonth> reprotMonths{ get; set; }
|
|
public List<ReportDetails> reportDetails{ get; set; }
|
|
}
|
|
public class ReprotMonth
|
|
{
|
|
public string 月份 { get; set; }
|
|
public double 平均时间{ get; set; }
|
|
public double 最小值 { get; set; }
|
|
public double 最大值 { get; set; }
|
|
public double 总数 { get; set; }
|
|
public double 总时间 { get; set; }
|
|
public double 百分比 { get; set; }
|
|
public double 合格总数 { get; set; }
|
|
}
|
|
public class ReportDetails
|
|
{
|
|
public string 月份{ get; set; }
|
|
public string 姓名 { get; set; }
|
|
public string 开始时间{ get; set; }
|
|
public string 结束时间{ get; set; }
|
|
public double 差值 { get; set; }
|
|
public double 参考时间 { get; set; }
|
|
}
|
|
}
|