using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EC.Util.Net
{
public class APICallBack
{
public string reqCode { get; set; }
///
/// 任务单号
///
public string taskCode { get; set; }
///
/// AGV状态指令
///
public string method { get; set; }
public string reqTime { get; set; }
public string wbCode { get; set; }
///
/// AGV编号
///
public string robotCode { get; set; }
///
/// 请求AGV接口后返回的成功失败或其他消息
///
public string message { get; set; }
///
/// 请求AGV接口后返回的任务单号
///
public string data { get; set; }
///
/// 请求AGV接口后返回的任务状态
///
public string code { get; set; }
}
}