using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Model;
[SuppressSniffer]
public class FlowTaskModel
{
///
/// id.
///
public string? id { get; set; }
///
/// 实例id.
///
public string? processId { get; set; }
///
/// 任务编码.
///
public string? enCode { get; set; }
///
/// 任务名称.
///
public string? fullName { get; set; }
///
/// 紧急程度.
///
public int? flowUrgent { get; set; }
///
/// 流程id.
///
public string? flowId { get; set; }
///
/// 流程编码.
///
public string? flowCode { get; set; }
///
/// 流程名称.
///
public string? flowName { get; set; }
///
/// 流程类型.
///
public int? flowType { get; set; }
///
/// 流程分类.
///
public string? flowCategory { get; set; }
///
/// 表单json.
///
public string? flowForm { get; set; }
///
/// 表单数据.
///
public string? flowFormContentJson { get; set; }
///
/// 流程json.
///
public string? flowTemplateJson { get; set; }
///
/// 流程版本.
///
public string? flowVersion { get; set; }
///
/// 开始时间.
///
public DateTime? startTime { get; set; }
///
/// 结束时间.
///
public DateTime? endTime { get; set; }
///
/// 当前节点.
///
public string? thisStep { get; set; }
///
/// 当前节点id.
///
public string? thisStepId { get; set; }
///
/// 重要等级.
///
public string? grade { get; set; }
///
/// 状态.
///
public int? status { get; set; }
///
/// 完成情况.
///
public int? completion { get; set; }
///
/// 备注.
///
public string? description { get; set; }
///
/// 排序码.
///
public long? sortCode { get; set; }
///
/// 标识.
///
public int? enabledMark { get; set; }
}