using JNPF.Common.Contracts; using SqlSugar; namespace JNPF.WorkFlow.Entitys.Entity; /// /// 流程可见. /// [SugarTable("FLOW_ENGINEVISIBLE")] public class FlowEngineVisibleEntity : CEntityBase { /// /// 流程主键. /// [SugarColumn(ColumnName = "F_FLOWID")] public string? FlowId { get; set; } /// /// 经办类型. /// [SugarColumn(ColumnName = "F_OPERATORTYPE")] public string? OperatorType { get; set; } /// /// 经办主键. /// [SugarColumn(ColumnName = "F_OPERATORID")] public string? OperatorId { get; set; } /// /// 排序码. /// [SugarColumn(ColumnName = "F_SORTCODE")] public long? SortCode { get; set; } /// /// 可见类型(1:发起 2:协管). /// [SugarColumn(ColumnName = "F_TYPE")] public string? Type { get; set; } }