IOrganizationRepository.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Datory;
  4. using GxPress.Common.Page;
  5. using GxPress.Result.Organization;
  6. namespace GxPress.Repository.Interface.Organization
  7. {
  8. public interface IOrganizationRepository : IRepository
  9. {
  10. /// <summary>
  11. /// 机构列表
  12. /// </summary>
  13. /// <param name="request"></param>
  14. /// <returns></returns>
  15. Task<PagedList<Entity.tede2.Organization.Organization>> GetAllAsync(OrganizationListRequest request);
  16. /// <summary>
  17. /// 修改
  18. /// </summary>
  19. /// <param name="request"></param>
  20. /// <returns></returns>
  21. Task<bool> UpdateAsync(OrganizationUpdateRequest request);
  22. /// <summary>
  23. /// 删除
  24. /// </summary>
  25. /// <param name="request"></param>
  26. /// <returns></returns>
  27. Task<bool> DeleteAsync(List<int> ids);
  28. /// <summary>
  29. /// 修改
  30. /// </summary>
  31. /// <param name="request"></param>
  32. /// <returns></returns>
  33. Task<bool> UpdateIsDisableAsync(OrganizationUpdateDisableRequest request);
  34. /// <summary>
  35. /// 添加
  36. /// </summary>
  37. /// <param name="request"></param>
  38. /// <returns></returns>
  39. Task<bool> InsertAsync(Entity.tede2.Organization.Organization model);
  40. }
  41. }