using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.Model.ApiModel.AGV
{
//如果好用,请收藏地址,帮忙分享。
public class AGVQueryTaskStatusResponseData
{
///
///
///
public string agvCode { get; set; }
///
///
///
public string taskCode { get; set; }
///
///
///
public string taskStatus { get; set; }
///
/// 任务类型
///
public string taskTyp { get; set; }
}
public class AGVQueryTaskStatusResponse
{
///
///
///
public string code { get; set; }
///
///
///
public List data { get; set; }
///
///
///
public string interrupt { get; set; }
///
/// 成功
///
public string message { get; set; }
///
///
///
public string msgErrCode { get; set; }
///
///
///
public string reqCode { get; set; }
}
}