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<TExamPaper> selectTExamPaperList(TExamPaper tExamPaper);
|
|
int insertTExamPaper(TExamPaper tExamPaper);
|
|
int updateTExamPaper(TExamPaper tExamPaper);
|
|
int deleteTExamPaperByIds(String ids);
|
|
int deleteTExamPaperById(Long id);
|
|
List<TExamPaper> selectProdByDeleteList(List<Long> deletes);
|
|
List<Ztree> selectProdTree(String testType);
|
List<TExamPaper> getUserPapers();
|
|
int updateDeleted(TExamPaper tExamPaper);
|
|
List<TQuestion> updateInsertQuestion(List<TQuestion> questionList, String multilingual);
|
int deleteProductContent(TExamPaper tExamPaper);
|
void recallThaiInterface(TExamReport tExamReportResult, String reportType);
|
List<ExamPaperTitleItem> getExamPaperTitleContent(TExamPaper tExamPaper);
|
List<DictData> getType(Long id);
|
}
|