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; } /// /// 流程名称. /// [SugarColumn(ColumnName = "F_FULLNAME")] public string? FullName { get; set; } /// /// 排序码. /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } /// /// 分组id. /// [SugarColumn(ColumnName = "F_GROUPID")] public string? GroupId { get; set; } }