using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Dto.FlowLaunch;
[SuppressSniffer]
public class FlowLaunchListOutput
{
///
/// 编码.
///
public string? enCode { get; set; }
///
/// 创建人.
///
public string? creatorUserId { get; set; }
///
/// 创建时间.
///
public DateTime? creatorTime { get; set; }
///
/// 当前节点.
///
public string? thisStep { get; set; }
///
/// 紧急程度.
///
public int? flowUrgent { get; set; }
///
/// 流程分类.
///
public string? flowCategory { get; set; }
///
/// 名称.
///
public string? fullName { get; set; }
///
/// 流程名称.
///
public string? flowName { get; set; }
///
/// 状态.
///
public int? status { get; set; }
///
/// 开始时间.
///
public DateTime? startTime { get; set; }
///
/// id.
///
public string? id { get; set; }
///
/// 结束时间.
///
public DateTime? endTime { get; set; }
///
/// 完成度.
///
public int? completion { get; set; }
///
/// 备注.
///
public string? description { get; set; }
///
/// 流程编码.
///
public string? flowCode { get; set; }
///
/// 流程id.
///
public string? flowId { get; set; }
///
/// 表单分类.
///
public int? formType { get; set; } = 2;
///
/// 流程主表id.
///
public string? templateId { get; set; }
///
/// 委托节点id(待审页面使用,其他默认为0).
///
public string? delegateId { get; set; } = "0";
///
/// 排序码.
///
public long? sortCode { get; set; }
///
/// 委托发起人.
///
public string? delegateUser { get; set; }
///
/// 挂起(0:否,1:是).
///
public int? suspend { get; set; }
}