using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.WMS.Entitys.External
{
///
/// AGV可用货位查询
///
public class AgvLocationQuery
{
///
/// 托盘码
///
public string CN_S_TRAY_CODE { get; set; }
///
/// 货位编码
///
public string CN_S_LOCATION_CODE { get; set; }
///
/// 货位状态
///
public string CN_S_LOCATION_STATE { get; set; }
///
/// 负荷状态
///
public string CN_S_USE_STATE { get; set; }
///
/// 档位
///
public string LOCATION_GEAR { get; set; }
}
}