package com.ots.project.exam.service; import com.ots.framework.web.domain.Ztree; import com.ots.project.exam.domain.TExamPaper; import com.ots.project.exam.domain.TExamReport; import com.ots.project.exam.domain.TQuestion; import com.ots.project.exam.dto.ExamPaperTitleItem; import com.ots.project.system.dict.domain.DictData; import java.util.List; public interface ITExamPaperService { TExamPaper selectTExamPaperById(Long id); List selectTExamPaperList(TExamPaper tExamPaper); int insertTExamPaper(TExamPaper tExamPaper); int updateTExamPaper(TExamPaper tExamPaper); int deleteTExamPaperByIds(String ids); int deleteTExamPaperById(Long id); List selectProdByDeleteList(List deletes); List selectProdTree(String testType); List getUserPapers(); int updateDeleted(TExamPaper tExamPaper); List updateInsertQuestion(List questionList, String multilingual); int deleteProductContent(TExamPaper tExamPaper); void recallThaiInterface(TExamReport tExamReportResult, String reportType); List getExamPaperTitleContent(TExamPaper tExamPaper); List getType(Long id); }