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/Worker/WorkerListItem.cs

16 lines
397 B
C#

namespace CncModels.Dto.Worker
{
/// <summary>
/// 工人列表项
/// </summary>
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; }
}
}