56 lines
1.6 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 System.Collections.Generic;
namespace Learun.Application.WorkFlow
{
/// <summary>
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创建人:研发部
/// 日 期2018.12.11
/// 描 述:工作流进程详情数据模型
/// </summary>
public class NWFProcessDetailsModel
{
/// <summary>
/// 当前节点ID
/// </summary>
public string CurrentNodeId { get; set; }
/// <summary>
/// 当前正在执行的任务节点ID数据
/// </summary>
public List<string> CurrentNodeIds { get; set; }
/// <summary>
/// 流程模板信息
/// </summary>
public string Scheme { get; set; }
/// <summary>
/// 任务执行记录
/// </summary>
public List<NWFTaskLogEntity> TaskLogList { get; set; }
/// <summary>
/// 子流程进程主键
/// </summary>
public string childProcessId { get; set; }
/// <summary>
/// 父流程进程主键
/// </summary>
public string parentProcessId { get; set; }
/// <summary>
/// 流程是否结束 0 不是 1 是
/// </summary>
public int isFinished { get; set; }
//流程进程有效标志 1正常2草稿3作废
public int EnabledMark { get; set; }
/// <summary>
/// 创建人
/// </summary>
public string CreateUserId { get; set; }
/// <summary>
/// 项目ID
/// </summary>
public string ProjectId { get; set; }
}
}