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; } /// /// 单据类型 1 一般出库 2 物料出库 /// public string? type { get; set; } /// /// 发料仓库id /// public string? warehouse_id { get; set; } /// /// 目标库位编号 /// public string? location_code { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 单据编号 /// public string? bill_code { get; set; } /// /// 发料工位 /// public string? workstation_id { get; set; } /// /// 所属产线 /// public string? workline { get; set; } /// /// 状态 1 待配送 2 已完成 /// public string status { get; set; } /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } /// /// 生产任务单id /// public string? mo_task_id { get; set; } }