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.
|
-
- namespace Learun.Application.WorkFlow
- {
- /// <summary>
- /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
- /// Copyright (c) 2013-2018 北京泉江科技有限公司
- /// 创建人:陈彬彬
- /// 日 期:2017.04.17
- /// 描 述:工作流引擎节点触发方法
- /// </summary>
- public class NodeMethod : INodeMethod
- {
- /// <summary>
- /// 节点审核通过执行方法
- /// </summary>
- /// <param name="processId">流程实例主键</param>
- public void Sucess(string processId)
- {
-
- }
- /// <summary>
- /// 节点审核失败执行方法
- /// </summary>
- /// <param name="processId">流程实例主键</param>
- public void Fail(string processId)
- {
-
- }
- }
- }
|