using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Threading.Tasks;
namespace iWare.Wms.Application
{
public class InventoryByLocationOutput
{
///
/// 空库位数
///
public int EmptyLocation { get; set; }
///
/// 空托盘库位数
///
public int EmptyContainerLocation { get; set; }
///
/// 满托盘库位数
///
public int MaterialLocation { get; set; }
///
/// 锁定库位数
///
public int LockedLocation { get; set; }
///
/// 禁用库位数
///
public int DisableLocation { get; set; }
///
/// 仓库的所有巷道
///
public List Lanes { get; set; }
}
public class Lane
{
///
/// 巷道号
///
public int? LaneCode { get; set; }
///
/// 巷道的所有排
///
public List Rows { get; set; }
}
public class Row
{
///
/// 排号
///
public int? RowCode { get; set; }
///
/// 排的所有库位
///
public List RowLocations { get; set; }
}
public class RowLocation
{
///
/// 库位Code
///
public string WareLocationCode { get; set; }
///
/// 库位名称
///
public string WareLocationName { get; set; }
///
/// 所属货架
///
public string GoodSheId { get; set; }
///
/// 所属巷道
///
public int? Lane { get; set; }
///
/// 所在排
///
public int? Row { get; set; }
///
/// 所在列
///
public int? Column { get; set; }
///
/// 所在层
///
public int? Layer { get; set; }
///
/// 状态
///
public int? Status { get; set; }
///
/// 是否锁定
///
public int? IsLocked { get; set; }
///
/// 库存类型,0-库位,1-空托盘,2-物料托盘
///
public int? InventoryType { get; set; }
///
/// 托盘号
///
public string WareContainerCode { get; set; }
///
/// 库区
///
public string RegId { get; set; }
///
/// 高度
///
public decimal? High { get; set; }
///
/// 是否删除
///
public bool? IsDeleted { get; set; }
}
}