using Microsoft.AspNetCore.Mvc; using TGJ.NetworkFreight.SeckillAggregateServices.Pos.UserService; using YD_WeChatApplet.Api; using YD_WeChatApplet.Api.Entitys; using YD_WeChatApplet.Commons; using YD_WeChatApplet.Commons.Dto; using YD_WeChatApplet.Commons.Dto.HomeWork; using YD_WeChatApplet.Commons.Dto.School; namespace YD_WeChatApplet.Services { public interface IStudentService { /// /// 获取班级列表 /// /// Task> ClassListbyTeacher(); /// /// 获取学生列表 /// /// /// Task> StudentListByClassId(StudentListByClassIdDto dto); } }