namespace WCS.WorkEngineering.WebApi.Models.WMS.Response
{
///
/// 分配货位响应实体
///
public class ApplyStockInLocResponse
{
///
/// 货位号
///
public string CellNo { get; set; }
///
/// 巷道号
///
public string TunnelNum { get; set; }
///
/// 行
///
public int Row { get; set; }
///
/// 列
///
public int Colomn { get; set; }
///
/// 层
///
public int Layer { get; set; }
}
}