namespace CncModels.Dto.Worker { /// /// 工人列表项 /// public class WorkerListItem { public int Id { get; set; } public string Code { get; set; } public string Name { get; set; } public bool IsEnabled { get; set; } public int MachineCount { get; set; } public string MachineNames { get; set; } } }