using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.WarehouseMgr.Entities.Entity; /// /// 生产入库主表 /// [SugarTable("wms_prd_instock_h")] public partial class WmsPrdInstockH : BaseEntity { public WmsPrdInstockH() { id = SnowflakeIdHelper.NextId(); } /// /// 创建用户 /// 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? org_id { get; set; } /// /// 生产工单 /// public string? prd_bill_code { get; set; } /// /// 入库单号 /// public string? bill_code { get; set; } /// /// 物料ID /// public string? material_id { get; set; } /// /// 物料编码 /// public string? material_code { get; set; } /// /// 物料名称 /// public string? material_name { get; set; } /// /// 规格型号 /// public string? material_spec { get; set; } /// /// 计划入库数 /// public decimal? planqty { get; set; } /// /// 合格数 /// public decimal? pqty { get; set; } /// /// 不合格数 /// public decimal? rqty { get; set; } /// /// 工单类型 /// public string? type { get; set; } }