using JNPF.DependencyInjection; namespace JNPF.WorkFlow.Entitys.Dto.FlowTemplate; [SuppressSniffer] public class FlowTemplateListOutput { /// /// id. /// public string? id { get; set; } /// /// 流程编号. /// public string? enCode { get; set; } /// /// 流程名称. /// public string? fullName { get; set; } /// /// 流程类型. /// public int? type { get; set; } /// /// 流程分类. /// public string? category { get; set; } /// /// 表单类型(数据字典-流程表单类型). /// public int? formType { get; set; } /// /// 可见范围. /// public int? visibleType { get; set; } /// /// 版本. /// public string? version { get; set; } /// /// 流程JOSN包. /// public string? flowTemplateJson { get; set; } /// /// 图标. /// public string? icon { get; set; } /// /// 图标背景. /// public string? iconBackground { 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; } /// /// 标识. /// public int? enabledMark { get; set; } /// /// 排序码. /// public long? sortCode { get; set; } /// /// 是否协管(0 否,1是). /// public int? hasAssistBtn { get; set; } }