namespace IStation.Application.SZJT
{
///
///
///
public class BigScreenAllStationRepairKpiDto
{
///
/// 当日数量
///
public int Cd { get; set; }
///
/// 当月数量
///
public int Cm { get; set; }
///
/// 当年数量
///
public int Cy { get; set; }
///
/// 待受理
///
public int Pending { get; set; }
///
/// 已受理
///
public int Accepted { get; set; }
///
/// 进行中
///
public int Progress { get; set; }
///
/// 已验收
///
public int Checked { get; set; }
}
}