namespace CncModels.Dto.Production
{
///
/// 机床产量明细列表项(机床维度排行)
///
public class MachineProductionListItem
{
/// 排行名次
public int Rank { get; set; }
/// 机床名称
public string MachineName { get; set; }
/// 程序名
public string ProgramName { get; set; }
/// 总产量
public int TotalQuantity { get; set; }
/// 运行时长(小时)
public decimal? RunTime { get; set; }
/// 日夜班标识
public string DayStatus { get; set; }
}
}