namespace CncModels.Dto.Machine { /// /// 机床今日产量明细项 /// public class MachineTodayProdItem { /// NC程序名 public string ProgramName { get; set; } /// 产量 public int Quantity { get; set; } /// 运行时间(分钟) public decimal? RunTime { get; set; } /// 切削时间(分钟) public decimal? CuttingTime { get; set; } } }