namespace WIDESEAWCS_DTO.WMS
{
public class RequestTaskDto
{
///
/// 当前位置
///
public string Position { get; set; }
///
/// 托盘号
///
public string PalletCode { get; set; }
///
/// 空托盘可入巷到
///
public string PositionList { get; set; }
///
/// 任务类型
///
public string RequestType { get; set; } = string.Empty;
}
}