using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities; /// /// 载具库位设定 /// [SugarTable("wms_carrystdandloc")] public partial class WmsCarrystdandloc : BaseEntity { public WmsCarrystdandloc() { id = SnowflakeIdHelper.NextId(); } /// /// 租户ID /// public string tenant_id { get; set; } = string.Empty; /// /// 所属组织ID /// public string org_id { get; set; } = string.Empty; /// /// 库位ID /// public string location_id { get; set; } = string.Empty; /// /// 载具规格ID /// public string carrystd_id { get; set; } = string.Empty; /// /// 创建用户 /// public string create_id { get; set; } = string.Empty; /// /// 创建时间 /// public DateTime create_time { get; set; } = DateTime.Now; /// /// 最后修改人员ID /// public string? modify_id { get; set; } /// /// 最后修改时间 /// public DateTime? modify_time { get; set; } /// /// 扩展字段 /// public string? extras { get; set; } /// /// 时间戳(用于并发控制) /// public DateTime? timestamp { get; set; } }