using DapperORMCore.Model.CoreModel; using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Text; using System.Threading.Tasks; namespace NXWMS.Model.AppModels.Result.Report { /// /// 库位使用情况报表 /// public class BinUseSituationResult { /// /// 仓库编码 /// public string WarehouseCode { get; set; } /// /// 仓库名称 /// public string WarehouseName { get; set; } /// /// 库区编码 /// public string RegionCode { get; set; } /// /// 库区名称 /// public string RegionName { get; set; } /// /// 空闲库位数 /// public int IdleBinQTY { get; set; } /// /// 库位总数 /// public int BinQTY { get; set; } /// /// 空托库位数 /// public int EmplyBinQTY { get; set; } /// /// 满托库位数 /// public int FullBinQTY { get; set; } /// /// 入库占用数 /// public int InstockOccupyQTY { get; set; } /// /// 出库占用数 /// public int OutstockOccupyQTY { get; set; } /// /// 禁用占用数 /// public int DisableOccupyQTY { get; set; } } }