using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.BasicData.Entities; /// /// 工序次品关联表 /// [SugarTable("bas_process_defective")] public partial class BasProcessDefective : BaseEntity { public BasProcessDefective() { id = SnowflakeIdHelper.NextId(); } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 工序id /// public string process_id { get; set; } = string.Empty; /// /// 次品id /// public string defective_id { get; set; } = string.Empty; }