namespace JSMachine.WMS.WebHost.Models { /// /// 出入库统计信息 /// public class StockInAndOutStatisticInfo { /// /// 入库数量 /// public int StockInCount { get; set; } /// /// 出库数量 /// public int StockOutCount { get; set; } /// /// 所有货物数量 /// public int AllGoodsCount { get; set; } /// /// 空库位数量 /// public int EmptyStorageCount { get; set; } /// /// 库位使用率 /// public decimal StorageRackeUsedRatio { get; set; } } }