schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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
{
    /// <summary>
    /// 夹爪孔坐标实体类
    /// </summary>
    public class GripperCoordinateForWell : GripperCoordinate
    {
        private string _wellname;
        /// <summary>
        /// 孔名称
        /// </summary>
        public string wellname
        {
            get { return _wellname; }
            set { _wellname = value; }
        }
 
        private string _objectwidth;
        /// <summary>
        /// 操作对象夹宽
        /// </summary>
        public string objectwidth
        {
            get { return _objectwidth; }
            set { _objectwidth = value; }
        }
  
        /// <summary>
        /// 夹爪向内夹紧的距离值
        /// </summary>
        public float squeezeVal { get; set; }
    
        /// <summary>
        /// 抓手内夹紧的力百分比
        /// </summary>
        public float gripperpowerVal { get; set; }
  
        /// <summary>
        /// 夹爪向外张开的距离值
        /// </summary>
        public float spreadVal { get; set; }
 
        /// <summary>
        /// 抓板的速度,百分比
        /// </summary>
        public float gripSpeed { get; set; }
    }
}