Files
tnb.server/workflow/Tnb.WorkFlow.Entitys/Dto/FlowLaunch/FlowLaunchListOutput.cs
2023-03-13 15:00:34 +08:00

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