人工空托盘入库

This commit is contained in:
2024-07-13 22:52:14 +08:00
parent 2dc8f04e4e
commit 724372b20a
5 changed files with 205 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.WarehouseMgr.Entities.Entity;
/// <summary>
/// 空托盘入库及记录
/// </summary>
[SugarTable("wms_emptycarry_instock_log")]
public partial class WmsEmptycarryInstockLog : BaseEntity<string>
{
public WmsEmptycarryInstockLog()
{
id = SnowflakeIdHelper.NextId();
}
/// <summary>
/// 创建用户
/// </summary>
public string? create_id { get; set; }
/// <summary>
/// 创建时间
/// </summary>
public DateTime? create_time { get; set; }
/// <summary>
/// 所属组织
/// </summary>
public string? org_id { get; set; }
/// <summary>
/// 入库库位id
/// </summary>
public string? location_id { get; set; }
/// <summary>
/// 入库库位编码
/// </summary>
public string? location_code { get; set; }
/// <summary>
/// 载具id
/// </summary>
public string? carry_id { get; set; }
/// <summary>
/// 载具编码
/// </summary>
public string? carry_code { get; set; }
}