using YBEE.EQM.Core;
namespace YBEE.EQM.Application;
///
/// 监测抽样学生管理服务
///
public interface IExamSampleStudentService
{
///
/// 分页查询抽样学生信息
///
///
///
Task> QueryPageList(ExamSampleStudentPageInput input);
///
/// 根据监测号查询已发布监测方案中当前机构下学生信息
///
/// 监测计划ID
/// 监测号
///
Task GetByExamNumber(int examPlanId, string examNumber);
///
/// 查询监测学生信息
///
///
///
Task QueryExamSampleStudent(QueryExamSampleStudentInput input);
}