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
{
///
/// 查看各个地区城市学校信息
///
///
///
Task> GetSchool(SchoolCode schoolCode);
Task AuthorizedAISchoolAsync(Dictionary @params);
}
}