mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2026-04-17 11:08:02 +08:00
优化驳回流程;
优化节点执行人; 发现了layui select/radio/checkbox赋值的蛋疼问题
This commit is contained in:
@@ -1,24 +1,13 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using OpenAuth.App.Request;
|
||||
using OpenAuth.App.Response;
|
||||
using OpenAuth.Repository.Domain;
|
||||
|
||||
namespace OpenAuth.App
|
||||
{
|
||||
/// <summary>
|
||||
/// 流程设计服务
|
||||
/// <para>李玉宝新增于2017-01-16 16:18:35</para>
|
||||
/// </summary>
|
||||
public class FlowSchemeApp :BaseApp<FlowScheme>
|
||||
{
|
||||
|
||||
public void UpdateState(string keyValue, int state)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
|
||||
public void Add(FlowScheme flowScheme)
|
||||
{
|
||||
Repository.Add(flowScheme);
|
||||
@@ -31,7 +20,8 @@ namespace OpenAuth.App
|
||||
SchemeContent = flowScheme.SchemeContent,
|
||||
SchemeName = flowScheme.SchemeName,
|
||||
ModifyDate = DateTime.Now,
|
||||
FrmId = flowScheme.FrmId
|
||||
FrmId = flowScheme.FrmId,
|
||||
Disabled = flowScheme.Disabled
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user