using JNPF.Common.Security;
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowTemplate;
[SuppressSniffer]
public class FlowTemplateTreeOutput : TreeModel
{
///
/// 流程编号.
///
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; }
///
/// 流程主表id.
///
public string? templateId { get; set; }
}