using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities; /// /// 载具台账条码表 /// [SugarTable("wms_carry_code")] public partial class WmsCarryCode : BaseEntity, IWmsCarryEntity { public WmsCarryCode() { id = SnowflakeIdHelper.NextId(); } /// /// 所属组织ID /// public string? org_id { get; set; } /// /// 上级载具ID /// public string carry_id { get; set; } /// /// 物品ID /// public string material_id { get; set; } = string.Empty; /// /// 物品代码 /// public string material_code { get; set; } = string.Empty; /// /// 条码编号 /// public string barcode { get; set; } = string.Empty; /// /// 批次 /// public string? code_batch { get; set; } /// /// 条码数量 /// public decimal codeqty { get; set; } /// /// 是否出库 /// public int is_out { get; set; } /// /// 库位ID /// public string location_id { get; set; } = string.Empty; /// /// 库位编号 /// public string location_code { get; set; } = string.Empty; /// /// 单位ID /// public string unit_id { get; set; } = string.Empty; /// /// 单位代码 /// public string unit_code { get; set; } = string.Empty; /// /// 备注 /// public string? remark { get; set; } /// /// 扩展字段 /// public string? extras { get; set; } /// /// 时间戳 /// public DateTime? time_stamp { 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; } /// /// 仓库ID /// public string? warehouse_id { get; set; } /// /// 规格型号 /// public string? material_specification { get; set; } /// /// 箱号 /// public string? container_no { get; set; } /// /// 辅助属性(供应商) /// public string? auxprop_gys { get; set; } /// /// 辅助属性(小批号) /// public string? auxprop_xph { get; set; } /// /// 质检结果 /// public string? qc_res { get; set; } }