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