using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities; /// /// 采购收货明细表 /// [SugarTable("wms_purchase_d")] public partial class WmsPurchaseD : BaseEntity { public WmsPurchaseD() { id = SnowflakeIdHelper.NextId(); } /// /// 采购收货单ID /// public string bill_id { get; set; } = string.Empty; /// /// 执行状态 /// public string line_status { get; set; } = string.Empty; /// /// 物品ID /// public string material_id { get; set; } = string.Empty; /// /// 物品代码 /// public string material_code { get; set; } = string.Empty; /// /// 单位ID /// public string unit_id { get; set; } = string.Empty; /// /// 采购数量 /// public decimal purchase_qty { get; set; } /// /// 已到货数量 /// public decimal purchase_prqty { 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; } /// /// 批次 /// public string? code_batch { get; set; } /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } /// /// 本次到货数量 /// public decimal purchase_arriveqty { get; set; } }