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.

31 lines
647 B
C#

namespace Highway.Assemble.common
{
public class mesSoft : BaseObject
{
/// <summary>
/// MES软件唯一标识
/// </summary>
public string mesid;
/// <summary>
/// MES软件名称
/// </summary>
public string adapterName;
/// <summary>
/// MES软件Ip
/// </summary>
public string AdatperIP;
/// <summary>
/// MES软件端口号
/// </summary>
public string AdapterPort;
/// <summary>
/// MES软件状态 0 未连接 1已连接
/// </summary>
public byte State;
}
}