using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities; /// /// 空载具出库子表 /// [SugarTable("wms_empty_outstock_d")] public partial class WmsEmptyOutstockD : BaseEntity { public WmsEmptyOutstockD() { id = SnowflakeIdHelper.NextId(); } /// /// 行号 /// public string? no { get; set; } /// /// 所属组织ID /// public string org_id { get; set; } = string.Empty; /// /// 库位ID /// public string location_id { get; set; } = string.Empty; /// /// 空载具出库ID /// public string bill_id { get; set; } = string.Empty; /// /// 单据状态 /// public string status { get; set; } = string.Empty; /// /// 业务类型: /// public string biz_type { get; set; } = string.Empty; /// /// 载具ID /// public string carry_id { get; set; } = string.Empty; /// /// 载具编号 /// public string carry_code { 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; } }