16 lines
323 B
C#
16 lines
323 B
C#
using JNPF.WorkFlow.Entitys.Dto.FlowEngine;
|
|
|
|
namespace JNPF.WorkFlow.Interfaces.Service;
|
|
|
|
/// <summary>
|
|
/// 流程设计.
|
|
/// </summary>
|
|
public interface IFlowEngineService
|
|
{
|
|
/// <summary>
|
|
/// 发起列表.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<List<FlowEngineListOutput>> GetFlowFormList();
|
|
}
|