namespace ProductionLineMonitor.Web.Services.LineService { /// /// 生产计划 /// public class ProductionPlan { /// /// 机种 /// public string ModuleType { get; set; } /// /// 计划产能 /// public int PlanCapacity { get; set; } /// /// 理论产能 /// public int Capa { get; set; } /// /// 理论TT /// public double TT { get; set; } } }