using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common.AGVEunm
{
///
/// 任务执行结果反馈
///
public class AGVTaskFeedback
{
public string requestType { get; set; } = "WCS_201";
public string requestId { get; set; } = "1";
public string accessId { get; set; } = "1";
public Feedback data { get; set; }
}
public class Feedback
{
public List detail = new List();
}
public class TaskFeedback
{
///
/// 任务编号
///
public string taskNo { get; set; }
///
/// 任务类型
///
public string taskType { get; set; }
///
/// 任务状态 必填,枚举:90-取消,99-完成,91,失败,95任务暂停,60执行中
///
public string taskState { get; set; }
///
/// 状态时间
///
public string stateTime { get; set; }
///
/// 状态备注
///
public string remarks { get; set; }
}
}