This commit is contained in:
alex
2023-08-04 17:17:31 +08:00
parent ae76e93130
commit 31a1f8a149
4 changed files with 174 additions and 4 deletions

View File

@@ -0,0 +1,42 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.BasicData.Entities;
/// <summary>
/// 物料入库仓库
/// </summary>
[SugarTable("bas_material_inbound_wh")]
public partial class BasMaterialInboundWh : BaseEntity<string>
{
public BasMaterialInboundWh()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 物料id
/// </summary>
public string? material_id { get; set; }
/// <summary>
/// 仓库id
/// </summary>
public string? wh_id { get; set; }
/// <summary>
/// 最大库存
/// </summary>
public int? max_stock { get; set; }
/// <summary>
/// 最小库存
/// </summary>
public int? min_stock { get; set; }
/// <summary>
/// 安全库存
/// </summary>
public int? safe_stock { get; set; }
}