You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.1 KiB
C#

11 months ago
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; }
/// <summary>
/// 穴位索引
/// </summary>
public int Index { get; set; }
/// <summary>
/// 是否有产品
/// </summary>
public bool IsHasProduct { get; set; }
/// <summary>
/// 穴位中产品SN
/// </summary>
public string SN { get; set; }
/// <summary>
/// 穴位中产品从哪个穴位放过来的
/// </summary>
public int FromIndex { get; set; }
/// <summary>
/// 穴位中产品从哪个盘放过来的
/// </summary>
public TurnoverType FromType { get; set; }
/// <summary>
/// 放料时用的是哪个吸嘴
/// </summary>
public int SuckerNo { get; set; }
}
}