1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- using TEAMModelOS.Model.Core.Dtos;
- using TEAMModelOS.Model.Core.Models;
- namespace TEAMModelOS.Service.Core.Interfaces
- {
- public interface ISchoolService :IBusinessService
- {
- /// <summary>
- /// 查看各个地区城市学校信息
- /// </summary>
- /// <param name="getSchool"></param>
- /// <returns></returns>
- Task<List<School>> GetSchool(SchoolCode schoolCode);
- Task<RoleUser> AuthorizedAISchoolAsync(Dictionary<string, object> @params);
- }
- }
|