namespace RGD.ZhiQianAPI.ZhiQianModel
{
///
/// agv上报取货成功
///
public class BoxTaken
{
private string _containerCode;
private string _locationCode;
private string _caller;
private int _taskid;
///
/// 容器编码
///
public string containerCode { get => _containerCode; set => _containerCode = value; }
///
/// 取货位
///
public string locationCode { get => _locationCode; set => _locationCode = value; }
///
/// 上报方,默认为agv
///
public string caller { get => _caller; set => _caller = value; }
///
/// 任务id
///
public int taskId { get => _taskid; set => _taskid = value; }
}
}