#region using Web.Core.IServices.Base; using Web.Core.Model.DTO; using Web.Core.Model.Entity; #endregion namespace Web.Core.IServices.Myschool; public interface IStudentService : IBaseServices { /// /// 查询所有学生列表 /// /// Task> GetStudent(); /// /// 根据Id查询所有学生列表 /// /// Task GetStudentById(int id); /// /// 获取学生详情 /// /// /// Task GetStudentDetails(int id); }