init commit

This commit is contained in:
路 范
2022-03-30 17:54:33 +08:00
parent df01841625
commit 904bdd16cd
500 changed files with 217251 additions and 0 deletions

View File

@@ -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);
}
}