Files
tnb.server/workflow/Tnb.WorkFlow.Interfaces/Service/IFlowTemplateService.cs
2023-03-13 15:00:34 +08:00

17 lines
407 B
C#

using JNPF.WorkFlow.Entitys.Dto.FlowEngine;
using JNPF.WorkFlow.Entitys.Dto.FlowTemplate;
namespace JNPF.WorkFlow.Interfaces.Service;
/// <summary>
/// 流程设计.
/// </summary>
public interface IFlowTemplateService
{
/// <summary>
/// 发起列表.
/// </summary>
/// <returns></returns>
Task<List<FlowTemplateTreeOutput>> GetFlowFormList(int flowType, string userId = null);
}