using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Model;
[SuppressSniffer]
public class PortalWaitListModel
{
///
/// id.
///
public string? id { get; set; }
///
/// 名称.
///
public string? fullName { get; set; }
///
/// 编码.
///
public string? enCode { get; set; }
///
/// 流程id.
///
public string? flowId { get; set; }
///
/// 表单类型.
///
public int? formType { get; set; }
///
/// 状态.
///
public int? status { get; set; }
///
/// 实例.
///
public string? processId { get; set; }
///
/// 节点id.
///
public string? taskNodeId { get; set; }
///
/// 进程id.
///
public string? taskOperatorId { get; set; }
///
/// 创建时间.
///
public DateTime? creatorTime { get; set; }
///
/// 类型.
///
public int? type { get; set; }
}