2025-06-06 14:57:20 +08:00

28 lines
809 B
C#

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
{
/// <summary>
/// 获取班级列表
/// </summary>
/// <returns></returns>
Task<List<ClassListDto>> ClassListbyTeacher();
/// <summary>
/// 获取学生列表
/// </summary>
/// <param name="dto"></param>
/// <returns></returns>
Task<PageDataDto<StudentListDto>> StudentListByClassId(StudentListByClassIdDto dto);
}
}