package com.ots.project.exam.mapper; import com.ots.project.exam.domain.TExamLevel; import org.apache.ibatis.annotations.Param; import java.util.List; public interface TExamLevelMapper { public TExamLevel selectTExamLevelById(Long id); public List selectTExamLevelList(TExamLevel tExamLevel); public List selectTExamLevelList(); public List selectTExamLevelByquestionTemplateIdList(String questionTemplateId); public int insertTExamLevel(TExamLevel tExamLevel); public int updateTExamLevel(TExamLevel tExamLevel); public int deleteTExamLevelById(Long id); public int deleteTExamLevelByIds(String[] ids); List selectTExamLevelAndTSubjectById(Long id); public TExamLevel selectTExamLevelByUuidLan(@Param("uuid") String uuid, @Param("langType") String langType); public List selectTExamLevelByUuid(@Param("uuid") String uuid); List selectTExamLevelListByType(Integer[] types); }