|
@@ -19,23 +19,23 @@ namespace GxPress.Service.Interface
|
|
|
|
|
|
Task<(string Title, List<string> Summaries)> GetFlowTitleAndSummaryAsync(User user, int processId, int flowId);
|
|
|
|
|
|
- Task<FlowResult> GetFlowResult(int flowId,int userId=0);
|
|
|
+ Task<FlowResult> GetFlowResult(int flowId, int userId = 0);
|
|
|
|
|
|
Task<int> GetTodoCountAsync(int userId);
|
|
|
|
|
|
Task<ListResult> ListAllAsync(int page, int perPage, int processId, string state, string startDate, string endDate);
|
|
|
|
|
|
- Task<ListResult> ListMyCheckingAsync(int userId, FlowListRequest request,string source="");
|
|
|
+ Task<ListResult> ListMyCheckingAsync(int userId, FlowListRequest request, string source = "");
|
|
|
|
|
|
- Task<ListResult> ListMyCheckedAsync(int userId, FlowListRequest request,string source="");
|
|
|
+ Task<ListResult> ListMyCheckedAsync(int userId, FlowListRequest request, string source = "");
|
|
|
|
|
|
- Task<ListResult> ListSubmittedCheckingAsync(int userId, FlowListRequest request,string source="");
|
|
|
+ Task<ListResult> ListSubmittedCheckingAsync(int userId, FlowListRequest request, string source = "");
|
|
|
|
|
|
Task<ListResult> ListSubmittedCheckedAsync(int userId, FlowListRequest request);
|
|
|
|
|
|
Task<ListResult> ListCcUnreadAsync(int userId, FlowListRequest request);
|
|
|
|
|
|
- Task<ListResult> ListCcAllAsync(int userId, FlowListRequest request,string source="");
|
|
|
+ Task<ListResult> ListCcAllAsync(int userId, FlowListRequest request, string source = "");
|
|
|
|
|
|
Task<IEnumerable<FlowTodo>> GetTodoListAsync(int userId, int page, int perPage, int processId);
|
|
|
|
|
@@ -50,23 +50,23 @@ namespace GxPress.Service.Interface
|
|
|
Task<string> DownloadAsync(int flowId);
|
|
|
|
|
|
Task<int> ReAddAsync(int flowId);
|
|
|
- /// <summary>
|
|
|
+ /// <summary>
|
|
|
/// 上会等待
|
|
|
/// </summary>
|
|
|
/// <param name="flowId"></param>
|
|
|
/// <param name="userId"></param>
|
|
|
/// <returns></returns>
|
|
|
- Task<bool> ActionsWait(int flowId, int userId);
|
|
|
+ Task<bool> ActionsWait(int flowId, int userId);
|
|
|
|
|
|
- /// <summary>
|
|
|
+ /// <summary>
|
|
|
/// 获取用户ID
|
|
|
/// </summary>
|
|
|
/// <param name="node"></param>
|
|
|
/// <returns></returns>
|
|
|
- Task<List<int>> GetListUserAsync(ProcessNodeDto node);
|
|
|
+ Task<List<int>> GetListUserAsync(ProcessNodeDto node);
|
|
|
|
|
|
- Task<bool> RemindAsync(int flowId, int userId);
|
|
|
- /// <summary>
|
|
|
+ Task<bool> RemindAsync(int flowId, int userId);
|
|
|
+ /// <summary>
|
|
|
/// 工作流程条件判断
|
|
|
/// </summary>
|
|
|
/// <param name="flow"></param>
|
|
@@ -74,5 +74,11 @@ namespace GxPress.Service.Interface
|
|
|
Task NodeExecuteSwitchAsync(FlowDto flow, ProcessNodeDto processNode);
|
|
|
|
|
|
Task<bool> AddInboxAsyc(FlowDto flow);
|
|
|
+ /// <summary>
|
|
|
+ /// 撤回
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="flowId"></param>
|
|
|
+ /// <returns></returns>
|
|
|
+ Task<bool> RecallAsync(int flowId,int userId);
|
|
|
}
|
|
|
}
|