28 lines
739 B
C#
Raw Permalink Normal View History

2025-08-13 11:14:39 +08:00
using System.Collections.Generic;
namespace Learun.Workflow.Engine
{
/// <summary>
/// 版 本 PIT-ADMS V7.0.3 敏捷开发框架
/// Copyright (c) 2013-2018 Hexagon PPM
/// 创建人:研发部
/// 日 期2018.12.09
/// 描 述:工作流模板模型
/// </summary>
public class NWFScheme
{
/// <summary>
/// 节点数据
/// </summary>
public List<NWFNodeInfo> nodes { get; set; }
/// <summary>
/// 线条数据
/// </summary>
public List<NWFLineInfo> lines { get; set; }
/// <summary>
/// 流程撤销作废的时候执行的方法
/// </summary>
public NWFCloseDo closeDo { get; set; }
}
}