using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.EquipMgr.Entities; /// /// 库房资料 /// [SugarTable("tool_warehouse")] public partial class ToolWarehouse : BaseEntity { public ToolWarehouse() { id = SnowflakeIdHelper.NextId(); } /// /// 所属组织ID /// public string? orgid { get; set; } /// /// 库房代码 /// public string whcode { get; set; } = string.Empty; /// /// 库房名称 /// public string whname { get; set; } = string.Empty; /// /// 所属部门 /// public string? departmentid { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 时间戳 /// public string? timestamp { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 修改用户 /// public string? modify_id { get; set; } /// /// 修改时间 /// public DateTime? modify_time { get; set; } /// /// 扩展字段 /// public string? extras { get; set; } }