using YBEE.EQM.Core;
namespace YBEE.EQM.Application;
///
/// 试卷小题管理服务
///
public interface IExamPaperQuestionMinorService
{
///
/// 添加
///
///
///
Task Add(AddExamPaperQuestionMinorInput input);
///
/// 更新
///
///
///
Task Update(UpdateExamPaperQuestionMinorInput input);
///
/// 批量更新
///
///
///
Task BatchUpdate(BatchUpdateExamPaperQuestionMinorInput input);
///
/// 删除
///
///
///
Task Del(BaseId input);
///
/// 根据试卷ID获取小题列表
///
///
///
Task> GetListByExamPaperId(int examPaperId);
}