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/Dashboard/WorkerRankResponse.cs

15 lines
373 B
C#

namespace CncModels.Dto.Dashboard
{
/// <summary>
/// 工人产量排行项
/// </summary>
public class WorkerRankResponse
{
public int Rank { get; set; }
public int WorkerId { get; set; }
public string WorkerName { get; set; }
public int MachineCount { get; set; }
public int TotalQuantity { get; set; }
}
}