I_Device.cs
568 Bytes
namespace HH_WCS_Standard
{
public class I_Device
{
public string Code { get; set; }
public int Point { get; set; }
public string Type { get; set; }
public string Name { get; set; }
public int RoadWay { get; set; }
public int ForkNo { get; set; }
public string IP { get; set; }
public string ToPoint { get; set; }
public string BackPoint { get; set; }
public bool IsEnable { get; set; }
public int Limit { get; set; }
public bool IsWeight { get; set; }
}
}