using JNPF.Common.Const; using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.WorkFlow.Entitys.Entity; /// /// 流程引擎. /// [SugarTable("FLOW_TEMPLATEJSON")] [Tenant(ClaimConst.TENANTID)] public class FlowTemplateJsonEntity : CLDEntityBase { /// /// 流程编码. /// [SugarColumn(ColumnName = "F_TEMPLATEID")] public string? TemplateId { get; set; } /// /// 可见类型. /// [SugarColumn(ColumnName = "F_VISIBLETYPE")] public int? VisibleType { get; set; } /// /// 流程版本. /// [SugarColumn(ColumnName = "F_VERSION")] public string? Version { get; set; } /// /// 流程模板. /// [SugarColumn(ColumnName = "F_FLOWTEMPLATEJSON")] public string? FlowTemplateJson { get; set; } }