using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.response
{
public class ApplyStockInResponse:SRes
{
///
/// 货位号
///
public string CellNo { get; set; }
///
/// 巷道号
///
public int TunnelNum { get; set; }
///
/// 行
///
public int Row { get; set; }
///
/// 列
///
public int Colomn { get; set; }
///
/// 层
///
public int Layer { get; set; }
}
}