using JNPF.Common.Security; using JNPF.DependencyInjection; namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine; [SuppressSniffer] public class FlowEngineListOutput : TreeModel { /// /// 流程名称. /// public string? fullName { get; set; } /// /// 流程编号. /// public string? enCode { get; set; } /// /// 排序码. /// public long? sortCode { get; set; } /// /// 表单类型(数据字典-流程表单类型). /// public int? formType { get; set; } /// /// 创建人. /// public string? creatorUser { get; set; } /// /// 创建时间. /// public DateTime? creatorTime { get; set; } /// /// 修改人. /// public string? lastModifyUser { get; set; } /// /// 修改时间. /// public DateTime? lastModifyTime { get; set; } /// /// 说明. /// public string? description { get; set; } /// /// 状态(0-关闭,1-开启). /// public int? enabledMark { get; set; } /// /// 流程分类(数据字典-工作流-流程分类). /// public string? category { get; set; } /// /// 流程JOSN包. /// public string? flowTemplateJson { get; set; } /// /// 表单JSON包. /// public string? formData { get; set; } /// /// 图标. /// public string? icon { get; set; } /// /// 图标背景. /// public string? iconBackground { get; set; } /// /// 流程类型(数据字典-工作流-流程类型). /// public int? type { get; set; } /// /// 版本类型. /// public int? visibleType { get; set; } }