You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.1 KiB

2 years ago
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; }
/// <summary>
/// 任务单号
/// </summary>
public string taskCode { get; set; }
/// <summary>
/// AGV状态指令
/// </summary>
public string method { get; set; }
public string reqTime { get; set; }
public string wbCode { get; set; }
/// <summary>
/// AGV编号
/// </summary>
public string robotCode { get; set; }
/// <summary>
/// 请求AGV接口后返回的成功失败或其他消息
/// </summary>
public string message { get; set; }
/// <summary>
/// 请求AGV接口后返回的任务单号
/// </summary>
public string data { get; set; }
/// <summary>
/// 请求AGV接口后返回的任务状态
/// </summary>
public string code { get; set; }
}
}