using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ZR.Model.MES.wms
{
///
/// 对接agv 第三方
///
public class AGVtask_third
{
public string reqCode { get; set; }
public string msg { get; set; }
public List positionCodePath { get; set; }
}
public class AGV_location_third
{
public string positionCode { get; set; }
public string type { get; set; }
}
///
/// 生成任务单 第三方 返回值
///
public class AGV_task_third
{
public string code { get; set;}
public string message { get; set;}
public string reqCode { get;set;}
public string data { get; set; }
}
///
/// agv 取消任务
///
public class AGVtask_cancel_third
{
public string reqCode { get; set;}
public string forceCancel { get; set;}
public string taskCode { get; set; }
}
}