namespace CncModels.Dto.Dashboard { /// /// 工人产量排行项 /// 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; } } }