ISchoolService.cs 604 B

1234567891011121314151617181920
  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. namespace TEAMModelOS.Service.Core.Interfaces
  8. {
  9. public interface ISchoolService :IBusinessService
  10. {
  11. /// <summary>
  12. /// 查看各个地区城市学校信息
  13. /// </summary>
  14. /// <param name="getSchool"></param>
  15. /// <returns></returns>
  16. Task<List<School>> GetSchool(SchoolCode schoolCode);
  17. Task<RoleUser> AuthorizedAISchoolAsync(Dictionary<string, object> @params);
  18. }
  19. }