using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_DTO.Agv
{
///
/// AGV任务请求(取放)
///
public class AgvTaskRequestDTO
{
///
/// 请求编号
///
public string ReqCode { get; set; }
///
/// 请求时间截
///
public string ReqTime { get; set; }
///
/// 任务编号
///
public string TaskId { get; set; }
///
/// 机器人编号
///
public string RobotId { get; set; }
///
/// 位置编号
///
public string PositionId { get; set; }
///
/// 料箱编号
///
public string ContainerCode { get; set; }
///
/// 请求节点
/// 1:带载请求进入(背着料车进入);
/// 2:空载请求进入(不带料车进入);
/// 3:请求离开;
/// 4:请求放料;
/// 5:请求取料;
/// 6:通知 PLC 投料;
/// 7:通知 PLC 接料;
///
public string Action { get; set; }
}
}