using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using DataEntity; namespace XImagingXhandler.XDAL { /// /// 方法结束节点属性实体 /// public class MethodEnd : IEntity { /// /// 是否从此命令开始 /// public string isrun { get; set; } /// /// 命令是否可用 /// public string status { get; set; } /// /// 命令名称 /// public string name { get; set; } /// /// 在实验流程中的位置编号 /// public string strIndex { get; set; } private string _label; /// /// 命令标签名 /// public string label { get { return _label; } set { _label = value; OnPropertyChanged("label"); } } private bool _isGoHome; /// /// 臂和抓手是否回原始位置 /// public bool isGoHome { get { return _isGoHome; } set { _isGoHome = value; OnPropertyChanged("isGoHome"); } } private bool _isTipsOff; /// /// 是否卸载所有枪头 /// public bool isTipsOff { get { return _isTipsOff; } set { _isTipsOff = value; OnPropertyChanged("isTipsOff"); } } } }