namespace CncModels.Dto.Production
{
///
/// 程序产量明细列表项(程序维度排行)
///
public class ProgramProductionListItem
{
/// 排行名次
public int Rank { get; set; }
/// 程序名
public string ProgramName { get; set; }
/// 使用机床数
public int MachineCount { get; set; }
/// 总产量
public int TotalQuantity { get; set; }
/// 平均单机产量
public decimal AvgPerMachine { get; set; }
/// 产量占比(百分比)
public decimal Percentage { get; set; }
/// 关联机床ID列表(逗号分隔,用于跨页面联动)
public string MachineIds { get; set; }
}
}