using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using DataEntity;
namespace XImagingXhandler.XDAL
{
public class MethodGripMove : IEntity
{
public string isrun { get; set; }
public string status { get; set; }
public string name { get; set; }
private string _label;
public string label
{
get { return _label; }
set
{
_label = value;
OnPropertyChanged("label");
}
}
public string strIndex { get; set; }
///
/// arm名字
///
public string armText { get; set; }
///
/// arm的ID
///
public string armValue { get; set; }
///
/// 移动到板位的名字
///
public string latticeText { get; set; }
///
/// 移动到
///
public string latticeValue { get; set; }
}
}