| | |
| | | package com.ots.project.exam.mapper; |
| | | |
| | | import com.ots.project.exam.domain.TExamPaperQuestion; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式Mapper接口 |
| | | * |
| | | * @author ots |
| | | * @date 2020-03-03 |
| | | */ |
| | | public interface TExamPaperQuestionMapper |
| | | { |
| | | |
| | | /** |
| | | * 查询记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式 |
| | | * |
| | | * @param paperId 记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式ID |
| | | * @return 记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式 |
| | | */ |
| | | public TExamPaperQuestion selectTExamPaperQuestionById(Long paperId); |
| | | |
| | | |
| | | /** |
| | | * 查询记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式列表 |
| | | * |
| | | * @param tExamPaperQuestion 记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式 |
| | | * @return 记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式集合 |
| | | */ |
| | | public List<TExamPaperQuestion> selectTExamPaperQuestionList(TExamPaperQuestion tExamPaperQuestion); |
| | | |
| | | |
| | | /** |
| | | * 新增记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式 |
| | | * |
| | | * @param tExamPaperQuestion 记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式 |
| | | * @return 结果 |
| | | */ |
| | | public int insertTExamPaperQuestion(TExamPaperQuestion tExamPaperQuestion); |
| | | |
| | | |
| | | /** |
| | | * 修改记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式 |
| | | * |
| | | * @param tExamPaperQuestion 记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式 |
| | | * @return 结果 |
| | | */ |
| | | public int updateTExamPaperQuestion(TExamPaperQuestion tExamPaperQuestion); |
| | | |
| | | |
| | | /** |
| | | * 删除记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式 |
| | | * |
| | | * @param paperId 记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式ID |
| | | * @return 结果 |
| | | */ |
| | | public int deleteTExamPaperQuestionById(Long paperId); |
| | | |
| | | |
| | | /** |
| | | * 批量删除记录产品包对应的题目编码方便后面的查询需求,为了防止过大,用delete的方式 |
| | | * |
| | | * @param paperIds 需要删除的数据ID |
| | | * @return 结果 |
| | | */ |
| | | public int deleteTExamPaperQuestionByIds(String[] paperIds); |
| | | } |