using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.ProductionMgr.Entities; /// /// mes齐套出库主表 /// [SugarTable("prd_kitting_out_h")] public partial class PrdKittingOutH : BaseEntity { public PrdKittingOutH() { id = SnowflakeIdHelper.NextId(); } /// /// 出库仓库ID /// public string warehouse_id { get; set; } = string.Empty; /// /// 目标库位编号 /// public string location_code { get; set; } = string.Empty; /// /// 产品ID /// public string material_id { get; set; } = string.Empty; /// /// 产品编号 /// public string? material_code { get; set; } /// /// 齐套搭配方案ID /// public string collocation_scheme_id { get; set; } = string.Empty; /// /// 齐套搭配方案编号 /// public string? collocation_scheme_code { get; set; } /// /// 顺序号 /// public string? seq { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 流程任务Id /// public string? f_flowtaskid { get; set; } /// /// 流程引擎Id /// public string? f_flowid { get; set; } /// /// 单据号 /// public string code { get; set; } = string.Empty; /// /// 所属工位 /// public string? workstation_id { get; set; } /// /// 所属产线 /// public string? workline_id { get; set; } /// /// 任务单 /// public string? mo_task_id { get; set; } /// /// 状态 1 待配送 2 已完成 /// public string status { get; set; } }