using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities; /// /// 空载具出库主表 /// [SugarTable("wms_empty_outstock_h")] public partial class WmsEmptyOutstockH : BaseEntity { public WmsEmptyOutstockH() { id = SnowflakeIdHelper.NextId(); } /// /// 租户ID /// public string? tenant_id { get; set; } /// /// 所属组织ID /// public string? org_id { get; set; } /// /// 单号 /// public string bill_code { get; set; } = string.Empty; /// /// 单据状态 /// public string status { get; set; } = string.Empty; /// /// 业务类型: /// public string biz_type { get; set; } = string.Empty; /// /// 库位ID /// public string location_id { get; set; } = string.Empty; /// /// 载具规格 /// public string carrystd_id { get; set; } = string.Empty; /// /// 数量 /// public int qty { get; set; } /// /// 创建用户 /// 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; } ///// ///// 二楼机械臂剩余绑定料架数量 ///// //public int? remainbindracknum { get; set; } ///// ///// 二楼机械臂料箱绑定完成 ///// //public string? bindrackcomplete { get; set; } }