ISchoolService.cs 671 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. using TEAMModelOS.Model.Core.Dtos;
  6. using TEAMModelOS.Model.Core.Models;
  7. using TEAMModelOS.SDK.Module.AzureTable.Interfaces;
  8. namespace TEAMModelOS.Service.Core.Interfaces
  9. {
  10. public interface ISchoolService : IBusinessService, IBaseService
  11. {
  12. /// <summary>
  13. /// 查看各个地区城市学校信息
  14. /// </summary>
  15. /// <param name="getSchool"></param>
  16. /// <returns></returns>
  17. Task<List<School>> GetSchool(SchoolCode schoolCode);
  18. Task<RoleUser> AuthorizedAISchoolAsync(Dictionary<string, object> @params);
  19. }
  20. }