namespace RGD.ZhiQianAPI.ZhiQianModel
{
///
/// agv请求从输送线取货,一般直接同意,因为只有在输送线到达取放货口时再发送运单
///
public class RequestDilivery
{
private string _cell;
private string _box;
private int _wmsTaskId;
///
/// 取货位
///
public string cell { get => _cell; set => _cell = value; }
///
/// 容器编码
///
public string box { get => _box; set => _box = value; }
///
/// 大任务id
///
public int wmsTaskId { get => _wmsTaskId; set => _wmsTaskId = value; }
}
}