mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-20 18:47:55 +08:00
完成流程实例列表/详情、流程模版添加
This commit is contained in:
35
OpenAuth.App/Extention/WF_RuntimeInitModel.cs
Normal file
35
OpenAuth.App/Extention/WF_RuntimeInitModel.cs
Normal file
@@ -0,0 +1,35 @@
|
||||
using System;
|
||||
|
||||
namespace OpenAuth.App.Extention
|
||||
{
|
||||
/// <summary>
|
||||
/// 版 本 6.1
|
||||
/// Copyright (c) 2013-2016 上海力软信息技术有限公司
|
||||
/// 创建人:陈彬彬
|
||||
/// 日 期:2016.03.04 16:58
|
||||
/// 描 述:工作流流程流转初始化模型类
|
||||
/// </summary>
|
||||
public class WF_RuntimeInitModel
|
||||
{
|
||||
/// <summary>
|
||||
/// GUID
|
||||
/// </summary>
|
||||
public Guid processId { get; set; }
|
||||
/// <summary>
|
||||
/// 工作流模板内容
|
||||
/// </summary>
|
||||
public string schemeContent { get; set; }
|
||||
/// <summary>
|
||||
/// 当前运行节点(默认开始节点)
|
||||
/// </summary>
|
||||
public string currentNodeId { get; set; }
|
||||
/// <summary>
|
||||
/// 提交的表单数据
|
||||
/// </summary>
|
||||
public string frmData { get; set; }
|
||||
/// <summary>
|
||||
/// 上一个节点
|
||||
/// </summary>
|
||||
public string previousId { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user