using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WCS.WorkEngineering.WebApi.Models.WMS.Response { /// /// 分拣申请货位返回接口 /// public class FJApplyStockInLocResponse { /// /// 货位号 /// public string CellNo { get; set; } /// /// 仓库号 /// public long WarehuoseId { get; set; } /// /// 巷道号 /// public string TunnelNum { get; set; } /// /// 行 /// public int Row { get; set; } /// /// 列 /// public int Colomn { get; set; } /// /// 层 /// public int Layer { get; set; } /// /// 深度 /// public int Depth { get; set; } } }