using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using static HxEnum.OperationTypeEnum; namespace XImagingXhandler.XDAL { /// /// 发送数据参数类 /// public class HxSendBase { /// /// 消息编号 /// public string message_id { get; set; } /// /// 消息类型,详见0.8节 /// public int message_type { get; set; } /// /// 方法名称 /// public string method { get; set; } /// /// 设备唯一编号 /// public string equipment_id { get; set; } /// /// 工作流ID /// public string workflow_id { get; set; } /// /// 实验ID /// public string experiment_id { get; set; } /// /// 预计执行时间,用作模拟器运行 /// public int estimate_time { get; set; } /// /// 响应超时时间 /// public int timeout { get; set; } /// /// 方法描述,可为空 /// public string description { get; set; } /// /// 时间戳 /// public string timestamp { get; set; } /// /// 参数 /// public object parameters { get; set; } ///// ///// 实验类型 ///// //public NodeOperationTypeEnum NodeOperationType { get; set; } } }