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.
24 lines
638 B
C#
24 lines
638 B
C#
namespace CncModels.Dto.CollectAddress
|
|
{
|
|
/// <summary>
|
|
/// 采集地址下关联机床项
|
|
/// </summary>
|
|
public class CollectAddressMachineItem
|
|
{
|
|
/// <summary>机床名称</summary>
|
|
public string MachineName { get; set; }
|
|
|
|
/// <summary>设备编码</summary>
|
|
public string DeviceCode { get; set; }
|
|
|
|
/// <summary>车间名称</summary>
|
|
public string WorkshopName { get; set; }
|
|
|
|
/// <summary>是否在线</summary>
|
|
public bool IsOnline { get; set; }
|
|
|
|
/// <summary>当前NC程序名</summary>
|
|
public string ProgramName { get; set; }
|
|
}
|
|
}
|