IFlowRepository.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Entity.WorkFlow;
  4. using GxPress.Request.App.Flow;
  5. using Datory;
  6. namespace GxPress.Repository.Interface.WorkFlow
  7. {
  8. public interface IFlowRepository : IRepository
  9. {
  10. Task<int> InsertAsync(Flow flow);
  11. Task<bool> DeleteAsync(int id);
  12. Task<Flow> GetAsync(int flowId);
  13. Task<int> GetCountByUserIdAsync(int userId, bool checking, FlowListRequest request);
  14. Task<IEnumerable<Flow>> GetListAsync(int processId);
  15. Task<int> GetCountAsync(int processId, string state, string startDate, string endDate);
  16. Task<IEnumerable<Flow>> GetListAllAsync(int page, int perPage, int processId, string state, string startDate, string endDate);
  17. Task<IEnumerable<Flow>> GetListByUserIdAsync(int userId, bool checking, FlowListRequest request);
  18. Task<IEnumerable<Flow>> GetListByIdListAsync(IEnumerable<int> flowIdList, int page, int perPage);
  19. Task UpdateStateAsync(int flowId, string state);
  20. Task UpdateProcessNodeIdAsync(int flowId, int processNodeId);
  21. /// <summary>
  22. /// 新增 未读数量
  23. /// </summary>
  24. /// <param name="userId"></param>
  25. /// <param name="checking"></param>
  26. /// <param name="request"></param>
  27. /// <returns></returns>
  28. Task<int> GetUReadCountByUserIdAsync(int userId, bool checking, FlowListRequest request);
  29. Task<int> CountAsync(SqlKata.Query query);
  30. }
  31. }