namespace CncModels.Dto.CollectAddress { /// /// 采集地址下关联机床项 /// public class CollectAddressMachineItem { /// 机床名称 public string MachineName { get; set; } /// 设备编码 public string DeviceCode { get; set; } /// 车间名称 public string WorkshopName { get; set; } /// 是否在线 public bool IsOnline { get; set; } /// 当前NC程序名 public string ProgramName { get; set; } } }