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