namespace DeviceRepair.Models.Common { /// /// 当前年度计划完成进度 /// public class CurrentYearPlanSchedule { public CurrentYearPlanSchedule() { TimeOut = 0; Complete = 0; Current = 0; Future = 0; } /// /// 总数 /// public int Total { get; set; } /// /// 已超时 /// public int TimeOut { get; set; } /// /// 已完成 /// public int Complete { get; set; } /// /// 当前月待处理 /// public int Current { get; set; } /// /// 未来处理 /// public int Future { get; set; } public override string ToString() { return $"全年欲保养数:{Total}当月待保养数:{Current}全年已完成:{Complete}已超时数:{TimeOut}全年待完成数:{Current + Future}"; } } }