using YBEE.EQM.Core;
namespace YBEE.EQM.Application;
///
/// 试卷大题管理服务
///
public interface IExamPaperQuestionMajorService
{
///
/// 添加
///
///
///
Task Add(AddExamPaperQuestionMajorInput input);
///
/// 更新
///
///
///
Task Update(UpdateExamPaperQuestionMajorInput input);
///
/// 删除
///
///
///
Task Del(BaseId input);
///
/// 根据试卷ID获取大题列表
///
///
///
Task> GetListByExamPaperId(int examPaperId);
}