using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.BasicData.Entities; /// /// 生产bom子表物料信息 /// [SugarTable("bas_mbom_output_ext")] public partial class BasMbomOutputExt : BaseEntity { public BasMbomOutputExt() { id = SnowflakeIdHelper.NextId(); } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 工序id /// public string process_id { get; set; } = string.Empty; /// /// 生产bomid /// public string mbom_id { get; set; } = string.Empty; /// /// 生产bom子表id /// public string mbom_process_id { get; set; } = string.Empty; /// /// 副产出管控 0 不启用 1 启用 /// public string byproduct_status { get; set; } = string.Empty; }