Files
2023-03-13 15:00:34 +08:00

96 lines
2.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.Common.Security;
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineListOutput : TreeModel
{
/// <summary>
/// 流程名称.
/// </summary>
public string? fullName { get; set; }
/// <summary>
/// 流程编号.
/// </summary>
public string? enCode { get; set; }
/// <summary>
/// 排序码.
/// </summary>
public long? sortCode { get; set; }
/// <summary>
/// 表单类型(数据字典-流程表单类型).
/// </summary>
public int? formType { get; set; }
/// <summary>
/// 创建人.
/// </summary>
public string? creatorUser { get; set; }
/// <summary>
/// 创建时间.
/// </summary>
public DateTime? creatorTime { get; set; }
/// <summary>
/// 修改人.
/// </summary>
public string? lastModifyUser { get; set; }
/// <summary>
/// 修改时间.
/// </summary>
public DateTime? lastModifyTime { get; set; }
/// <summary>
/// 说明.
/// </summary>
public string? description { get; set; }
/// <summary>
/// 状态(0-关闭1-开启).
/// </summary>
public int? enabledMark { get; set; }
/// <summary>
/// 流程分类(数据字典-工作流-流程分类).
/// </summary>
public string? category { get; set; }
/// <summary>
/// 流程JOSN包.
/// </summary>
public string? flowTemplateJson { get; set; }
/// <summary>
/// 表单JSON包.
/// </summary>
public string? formData { get; set; }
/// <summary>
/// 图标.
/// </summary>
public string? icon { get; set; }
/// <summary>
/// 图标背景.
/// </summary>
public string? iconBackground { get; set; }
/// <summary>
/// 流程类型(数据字典-工作流-流程类型).
/// </summary>
public int? type { get; set; }
/// <summary>
/// 版本类型.
/// </summary>
public int? visibleType { get; set; }
}