You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
haoliang-net/src/CncModels/Dto/Production/MachineProductionSummaryRes...

21 lines
564 B
C#

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