namespace CncModels.Dto.Production { /// /// 机床产量汇总响应 /// public class MachineProductionSummaryResponse { /// 总产量 public int TotalQuantity { get; set; } /// 运行机床数 public int RunningMachineCount { get; set; } /// 平均单机产量 public decimal AvgPerMachine { get; set; } /// 最高单产机床 public string TopMachineName { get; set; } } }