namespace AmrControl.Dto
{
///
/// 捡料工位的信息
///
public class PickingStationStatus
{
public string PickingStationId { get; set; }
///
/// 是否有车
///
public bool ContainsJAR { get; set; }
///
/// 车的编号
///
public string JarSN { get; set; }
///
/// 是否有物料盒子,没有车也可能有物料盒子
///
public bool ContainsBox { get; set; }
///
/// 盒子是否有RFID,这个物料盒子隶属于仓库,可以通过BoxRFID来查询里面的物料内容,
/// 或者根据BoxRFID来进行出入库的动作
///
public string BoxRFID { get; set; }
}
}