namespace Safeguard.Models
{
public class LineProductionPlan
{
///
/// 机种
///
public string? ModuleType { get; set; }
///
/// 计划产能
///
public int PlanCapacity { get; set; }
///
/// 理论产能
///
public int Capa { get; set; }
///
/// 理论TT
///
public double TT { get; set; }
}
}