using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XImagingXhandler.XDAL { /// /// 心跳类 /// public class HeartbeatMoel { /// /// 消息ID /// public string message_id { get; set; } /// /// 消息类型 /// public int message_type { get; set; } /// /// 设备ID /// public string equipment_id { get; set; } /// /// 工作流ID /// public string workflow_id { get; set; } /// /// 设备驱动状态(1准备/空闲、2忙碌) /// public int equipment_status { get; set; } /// /// 真实设备状态(1真实设备与驱动连接成功、2失败) /// public int actual_device_status { get; set; } /// /// 验动虚拟机模式/真机模式 0、1 /// public int connected { get; set; } /// /// 时间 /// public string timestamp { get; set; } } }