You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
628 B
29 lines
628 B
using System.Collections.Generic;
|
|
|
|
namespace learun.workflow
|
|
{
|
|
/// <summary>
|
|
/// 版 本 EasyCode EC管理后台
|
|
/// Copyright (c) 2019-present EC管理有限公司
|
|
/// 创建人:tobin
|
|
/// 日 期:2019.11.22
|
|
/// 描 述:工作流模板模型
|
|
/// </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; }
|
|
}
|
|
}
|