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/ProgramProductionListItem.cs

30 lines
898 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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