using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.ProductionMgr.Entities; /// /// mes生产领料主表 /// [SugarTable("prd_outstock_h")] public partial class PrdOutstockH : BaseEntity { public PrdOutstockH() { id = SnowflakeIdHelper.NextId(); } /// /// 出库单创建日期 /// public string? bill_date { get; set; } /// /// 单据类型 /// public string? bill_type { get; set; } /// /// 发料仓库id /// public string? warehouse_id { get; set; } /// /// 目标库位编号 /// public string? location_code { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 单据编号 /// public string? bill_code { get; set; } /// /// 发料工位 /// public string? workstation { get; set; } /// /// 所属产线 /// public string? workline { get; set; } /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } }