using SqlSugar; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using XImagingXhandler.XDAL; namespace DataEntity { /// /// 夹爪孔坐标实体类 /// public class GripperCoordinateForWell : GripperCoordinate { private string _wellname; /// /// 孔名称 /// public string wellname { get { return _wellname; } set { _wellname = value; } } private string _objectwidth; /// /// 操作对象夹宽 /// public string objectwidth { get { return _objectwidth; } set { _objectwidth = value; } } /// /// 夹爪向内夹紧的距离值 /// public float squeezeVal { get; set; } /// /// 抓手内夹紧的力百分比 /// public float gripperpowerVal { get; set; } /// /// 夹爪向外张开的距离值 /// public float spreadVal { get; set; } /// /// 抓板的速度,百分比 /// public float gripSpeed { get; set; } } }