using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowEngine;
[SuppressSniffer]
public class FlowEngineCrInput
{
///
/// 流程名称.
///
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; }
///
/// 流程类型(0:发起流程,1:功能流程).
///
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; }
///
/// 数据库连接id.
///
public string? dbLinkId { get; set; }
///
/// app地址.
///
public string? appFormUrl { get; set; }
///
/// 表单地址.
///
public string? formUrl { get; set; }
///
/// 表单json草稿.
///
public string draftJson { get; set; }
///
/// 流程类型.
///
public int flowType { get; set; }
///
/// 接口路径.
///
public string interfaceUrl { get; set; }
///
/// 关联的表.
///
public string? tableJson { get; set; }
///
/// 表单模型.
///
public string? propertyJson { get; set; }
///
/// Web地址.
///
public string urlAddress { get; set; }
///
/// APP地址.
///
public string appUrlAddress { get; set; }
}