using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_DTO.Agv
{
    public class AgvPodBerthAndMatDTO
    {
        /// 
        /// 请求编号
        /// 
        public string ReqCode { get; set; }
        /// 
        /// 请求时间戳
        /// 
        public string ReqTime { get; set; }
        /// 
        /// 客户端编号
        /// 
        public string ClientCode { get; set; }
        /// 
        /// 令牌号
        /// 
        public string TokenCode { get; set; }
        /// 
        /// 货架编号
        /// 
        public string PodCode { get; set; }
        /// 
        /// 物料批次
        /// 
        public string MaterialLot { get; set; }
        /// 
        /// 位置编号
        /// 
        public string PositionCode { get; set; }
        /// 
        /// 区域编号
        /// 
        public string AreaCode { get; set; }
        /// 
        /// 地图简称
        /// 
        public string MapShortName { get; set; }
    }
}