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
using DataEntity;
using DataEntity.Device;
using System.Collections.Generic;
using System.ComponentModel;
 
namespace XImagingXhandler.XDAL
{
    /// <summary>
    /// 转运夹爪点位信息类
    /// </summary>
    public class GripTransportPosition : IEntity
    {
        /// <summary>
        /// 点位Id
        /// </summary>
        public string position_id { get; set; }
 
        /// <summary>
        /// 点位名称
        /// </summary>
        public string position_name { get; set; }
 
        /// <summary>
        /// 点位类型;0:载架;1:设备;2:台面
        /// </summary>
        public int position_type { get; set; }
      
    }
}