using JNPF.Common.Const; using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.WorkFlow.Entitys.Entity; /// /// 流程表单关系表. /// [SugarTable("FLOW_ENGINEFORM_RELATION")] [Tenant(ClaimConst.TENANTID)] public class FlowFormRelationEntity : EntityBase { /// /// 表单id. /// [SugarColumn(ColumnName = "F_FormId")] public string? FormId { get; set; } /// /// 流程id. /// [SugarColumn(ColumnName = "F_FlowId")] public string? FlowId { get; set; } }