namespace WcsMain.ApiClient.Shuttle.Dto;
///
/// 四向车库出库移库请求
///
public class ContainerTaskResqust
{
///
/// 请求ID
///
public string? RequestId { get; set; }
///
/// 密钥
///
public string? Key { get; set; }
///
/// WMS 任务号
///
public string? WmsTaskId { get; set; }
///
/// 载具号
///
public string? PalletNo { get; set; }
///
/// 起始位置
///
public string? FromCellNo { get; set; }
///
/// 目标位置
///
public string? ToCell { get; set; }
///
/// 任务类型
///
///
/// 2 - 出库
/// 3 - 移库
///
public string? TaskType { get; set; }
}