using YBEE.EQM.Core;
namespace YBEE.EQM.Application;
///
/// 监测科目管理服务
///
public interface IExamCourseService
{
///
/// 添加监测科目
///
///
///
Task Add(AddExamCourseInput input);
///
/// 更新监测科目
///
///
///
Task Update(UpdateExamCourseInput input);
///
/// 删除监测科目
///
///
///
Task Del(BaseId input);
///
/// 根据ID获取监测科目信息
///
///
///
Task GetById(int id);
///
/// 查询监测年级列表
///
///
///
Task> QueryList(QueryExamCourseInput input);
///
/// 查询监测学科列表
///
///
///
Task> GetListByExamPlanId(int examPlanId);
}