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<TExamLevel> selectTExamLevelList(TExamLevel tExamLevel);
|
public List<TExamLevel> selectTExamLevelList();
|
public List<TExamLevel> selectTExamLevelByquestionTemplateIdList(String questionTemplateId);
|
|
public int insertTExamLevel(TExamLevel tExamLevel);
|
|
public int updateTExamLevel(TExamLevel tExamLevel);
|
|
public int deleteTExamLevelById(Long id);
|
|
public int deleteTExamLevelByIds(String[] ids);
|
List<TExamLevel> selectTExamLevelAndTSubjectById(Long id);
|
public TExamLevel selectTExamLevelByUuidLan(@Param("uuid") String uuid, @Param("langType") String langType);
|
public List<TExamLevel> selectTExamLevelByUuid(@Param("uuid") String uuid);
|
List<TExamLevel> selectTExamLevelListByType(Integer[] types);
|
}
|