using LanShengModel;
///
/// 设备故障报表
///
public class DeviceErrorReport
{
///
/// 故障类型
///
public IEnumerable? ErrCodes { get; set; }
///
/// 公司编号
///
public IEnumerable? CompanyIds { get; set; }
///
/// 项目编号
///
public IEnumerable? ProjectIds { get; set; }
///
/// 设备编号
///
public IEnumerable? DeviceIds { get; set; }
public IEnumerable? GpsIds { get; set; }
///
/// 开始日期
///
public DateTime? StartDate { get; set; }
///
/// 结束日期
///
public DateTime? EndDate { get; set; }
///
/// 单元
///
public string? Unit { get; set; }
///
/// 数据集
///
public IEnumerable? Items { get; set; }
}
public class DeviceErrorReportItem {
public DeviceErrorReportItem() {
Code = "";
Msg = "";
Counts = new Dictionary();
}
public string Code { get; set; }
public string Msg { get; set; }
public Dictionary Counts { get; set; }
public int Count { get; set; }
}