using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 载具条码表 /// [SugarTable("wms_prd_instock_code")] public partial class WmsPrdInstockCode : BaseEntity { public WmsPrdInstockCode() { id = SnowflakeIdHelper.NextId(); } /// /// 计划数 /// public decimal? planqty { get; set; } /// /// 合格数 /// public decimal? pqty { get; set; } /// /// 批次 /// public string? code_batch { get; set; } /// /// 条码信息 /// public string? code { get; set; } /// /// 单位 /// public string? unit_id { get; set; } /// /// 父表ID /// public string? prd_instock_id { get; set; } /// /// 入库明细id /// public string? prd_instockD_id { get; set; } /// /// 载具ID /// public string? carry_id { get; set; } }