基础服务api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 lines
665 B

  1. using BPA.SAAS.Manage.Application.Org.Dtos.Organize;
  2. using BPA.SAAS.Manage.Core.Base;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.SAAS.Manage.Application.Org.Interface
  9. {
  10. public interface IOrganizeService
  11. {
  12. Task<PageUtil> QueryOrgPageList(OrgPageInput input);
  13. Task<List<OrgOutput>> GetOrgList(OrgListInput input);
  14. Task<bool> AddOrg(OrgAddInput input);
  15. Task<bool> DeleteOrg(string id);
  16. Task<bool> UpdateOrg(UpdateOrgInput input);
  17. Task<dynamic> GetOrgTree();
  18. Task<Dictionary<string, object>> GetOrgList();
  19. }
  20. }