using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineInfoOutput
{
///
/// 主键id.
///
public string? id { get; set; }
///
/// 流程名称.
///
public string? fullName { get; set; }
///
/// 流程编号.
///
public string? enCode { get; set; }
///
/// 排序码.
///
public long? sortCode { get; set; }
///
/// 表单类型(数据字典-流程表单类型).
///
public int? formType { get; set; }
///
/// 流程分类(数据字典-工作流-流程分类).
///
public string? category { get; set; }
///
/// 流程类型(数据字典-工作流-流程类型).
///
public int? type { get; set; }
///
/// 图标.
///
public string? icon { get; set; }
///
/// 图标背景.
///
public string? iconBackground { get; set; }
///
/// 说明.
///
public string? description { get; set; }
///
/// 状态(0-关闭,1-开启).
///
public int? enabledMark { get; set; }
///
/// 表单JSON包.
///
public string? formData { get; set; }
///
/// 流程JOSN包.
///
public string? flowTemplateJson { get; set; }
///
/// 关联表信息.
///
public string? tables { get; set; }
///
/// 版本.
///
public string? version { get; set; }
///
/// 版本类型.
///
public string? visibleType { get; set; }
///
/// 数据库连接id.
///
public string? dbLinkId { get; set; } = "0";
///
/// app链接.
///
public string? appFormUrl { get; set; }
///
/// pc链接.
///
public string? formUrl { get; set; }
}