27 lines
766 B
C#
27 lines
766 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
using TGJ.NetworkFreight.SeckillAggregateServices.Pos.UserService;
|
|
using YD_XinWei.Api;
|
|
using YD_XinWei.Api.Entitys;
|
|
using YD_XinWei.Commons;
|
|
using YD_XinWei.Commons.Dto.School;
|
|
|
|
namespace YD_XinWei.Api.Services.Interface
|
|
{
|
|
public interface IStudentService
|
|
{
|
|
/// <summary>
|
|
/// 获取班级列表
|
|
/// </summary>
|
|
/// <param name="teacherPhoneNo"></param>
|
|
/// <returns></returns>
|
|
Task<List<ClassListDto>> ClassListbyTeacher(string teacherPhoneNo);
|
|
|
|
/// <summary>
|
|
/// 获取学生列表
|
|
/// </summary>
|
|
/// <param name="classId"></param>
|
|
/// <returns></returns>
|
|
Task<List<StudentListDto>> StudentListByClassId(int classId);
|
|
}
|
|
}
|