package com.mindskip.xzs.repository;
|
|
import com.mindskip.xzs.domain.ExamTemplatesSubject;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
import java.util.List;
|
|
@Mapper
|
public interface ExamTemplatesSubjectMapper extends BaseMapper<ExamTemplatesSubject>{
|
|
/**
|
* 添加
|
* @param examTemplatesSubject
|
* @return
|
*/
|
Integer add(ExamTemplatesSubject examTemplatesSubject);
|
|
List<ExamTemplatesSubject> getTemplatesId(@Param("templatesId") Integer templatesId);
|
|
Integer saves(List<ExamTemplatesSubject> examTemplatesSubjects);
|
|
Integer removeByTemplatesId(@Param("templatesId") Integer templatesId);
|
|
List<ExamTemplatesSubject> getByTemplatesId(@Param("templatesId") Integer templatesId);
|
|
}
|