You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
627 B
32 lines
627 B
namespace Entity.Api.Resp;
|
|
|
|
public class DeviceStateResp
|
|
{
|
|
/// <summary>
|
|
/// tBox连接状态
|
|
/// </summary>
|
|
|
|
public bool BoxConnectFlag { get; set; }
|
|
|
|
/// <summary>
|
|
/// 云平台连接状态
|
|
/// </summary>
|
|
|
|
public bool CloudConnectFlag{ get; set; }
|
|
|
|
/// <summary>
|
|
/// Plc连接状态
|
|
/// </summary>
|
|
public bool PlcConnectFlag{ get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// rfid连接状态
|
|
/// </summary>
|
|
public bool RfidConnectFlag { get; set; }
|
|
|
|
/// <summary>
|
|
/// 雷达连接状态
|
|
/// </summary>
|
|
public bool RadarConnectFlag { get; set; }
|
|
} |