using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_DTO.Agv
{
///
/// 料箱回调
///
public class AGVBoxApplyPassDTO
{
///
/// 请求编号
///
public string ReqCode { get; set; }
///
/// 请求时间
///
public string ReqTime { get; set; }
///
///
///
public string? ClientCode { get; set; }
///
/// 令牌号
///
public string? TokenCode { get; set; }
///
/// 任务单号
///
public string TaskCode { get; set; }
///
/// 1.取申请通过
/// 2.放申请通过
///
public string Type { get; set; }
}
}