LASAPlatform/OpenAuth.App/BaseApp/WFProcess/IWorkFlowMethod.cs

19 lines
433 B
C#
Raw Normal View History

2025-04-23 09:19:29 +08:00
using ce.autofac.extension;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.WorkFlow
{
public interface IWorkFlowMethod : IBLL
{
/// <summary>
/// 流程绑定方法需要继承的接口
/// </summary>
/// <param name="parameter"></param>
Task Execute(WfMethodParameter parameter);
}
}