using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AUTS.Domain.ViewModels { public class VM_OrderRealTimeStats { } public class OrderTestLogData { /// /// 实际产量 /// public int Total { get; set; } /// /// 时间 /// public DateTime StartTime { get; set; } public string DAYS { get; set; } } public class TbTotalDic { /// /// 计划产量 /// public int PlanTotal { get; set; } /// /// 实际产量 /// public int ActualTotal { get; set; } public TbTotalDic() { PlanTotal = 0; ActualTotal = 0; } } }