using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.BasicData.Entities; /// /// 仓库资料 /// [SugarTable("bas_warehouse")] public partial class BasWarehouse : BaseEntity { public BasWarehouse() { id = SnowflakeIdHelper.NextId(); } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 仓库代码 /// public string whcode { get; set; } = string.Empty; /// /// 仓库名称 /// public string whname { get; set; } = string.Empty; /// /// 是否委外仓 /// public int is_osstock { get; set; } /// /// 是否特殊仓 /// public int is_specialstock { get; set; } /// /// 所属部门 /// public string? department_id { get; set; } /// /// 备注 /// public string? remark { 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; } /// /// 时间戳 /// public string? timestamp { get; set; } }