using JNPF.DependencyInjection; namespace JNPF.WorkFlow.Entitys.Dto.FlowTemplate; [SuppressSniffer] public class FlowTemplateInfoOutput { /// /// 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 string? icon { get; set; } /// /// 图标背景. /// public string? iconBackground { get; set; } /// /// 说明. /// public string? description { get; set; } /// /// 排序码. /// public long? sortCode { get; set; } /// /// 流程设计信息. /// public string? flowTemplateJson { get; set; } /// /// 是否在线开发. /// public bool? onlineDev { get; set; } /// /// 启用标识. /// public int? enabledMark { get; set; } /// /// 在线开发流程表单id. /// public string? onlineFormId { get; set; } }