first commit

This commit is contained in:
2026-09-02 16:31:50 +08:00
commit a461727193
911 changed files with 692450 additions and 0 deletions
@@ -0,0 +1,29 @@
namespace JSMachine.WMS.WebHost.Models
{
/// <summary>
/// 出入库统计信息
/// </summary>
public class StockInAndOutStatisticInfo
{
/// <summary>
/// 入库数量
/// </summary>
public int StockInCount { get; set; }
/// <summary>
/// 出库数量
/// </summary>
public int StockOutCount { get; set; }
/// <summary>
/// 所有货物数量
/// </summary>
public int AllGoodsCount { get; set; }
/// <summary>
/// 空库位数量
/// </summary>
public int EmptyStorageCount { get; set; }
/// <summary>
/// 库位使用率
/// </summary>
public decimal StorageRackeUsedRatio { get; set; }
}
}