init commit
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace RoadFlow.Data
|
||||
{
|
||||
public interface IFlowDynamic:IRoadFlowRepository<RoadFlow.Model.rf_flowdynamic>
|
||||
{
|
||||
/// <summary>
|
||||
/// 查询一个动态流程
|
||||
/// </summary>
|
||||
/// <param name="StepId">动态步骤ID</param>
|
||||
/// <param name="groupId">组ID</param>
|
||||
/// <returns></returns>
|
||||
public Model.rf_flowdynamic Get(string StepId, string groupId);
|
||||
|
||||
/// <summary>
|
||||
/// 添加动态流程
|
||||
/// </summary>
|
||||
/// <param name="executeModel">流程执行参数实体</param>
|
||||
/// <param name="groupTasks">当前组任务List</param>
|
||||
/// <returns></returns>
|
||||
public Model.FlowRun Add(Model.FlowRunModel.Execute executeModel, List<Model.rf_flowtask> groupTasks);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user