using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using JNPF.Common.Models.WorkFlow;
namespace JNPF.WorkFlow.Interfaces.Service
{
///
/// 流程任务.
///
public interface IFlowTaskService
{
///
/// 新建.
///
/// 请求参数.
///
Task Create(FlowTaskSubmitModel flowTaskSubmit);
}
}