using Rs.MotionPlat.Commom; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Rs.MotionPlat.Entitys.Trays { public class BaseTraySlot { public int Row { get; set; } public int Column { get; set; } /// /// 穴位索引 /// public int Index { get; set; } /// /// 是否有产品 /// public bool IsHasProduct { get; set; } /// /// 穴位中产品SN /// public string SN { get; set; } /// /// 穴位中产品从哪个穴位放过来的 /// public int FromIndex { get; set; } /// /// 穴位中产品从哪个盘放过来的 /// public TurnoverType FromType { get; set; } /// /// 放料时用的是哪个吸嘴 /// public int SuckerNo { get; set; } } }