namespace Tnb.WarehouseMgr.Entities.Dto.Inputs
{
///
/// 机器人回调操作输入参数s
///
public class RobotCallBackInput
{
///
/// 主载具Id
///
public string carry_id { get; set; }
///
/// 主载具编号
///
public string carry_code { get; set; }
///
/// 子载具ID
///
public string membercarry_id { get; set; }
///
/// 子载具编号
///
public string membercarry_code { get; set; }
///
/// 方向
///
public int direction { get; set; }
///
/// 是否最后一个
///
public bool isLast { get; set; }
///
/// 位置
///
public int loc { get; set; }
}
}