28 lines
892 B
C#
28 lines
892 B
C#
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);
|
|
}
|
|
}
|