package com.ots.project.exam.mapper;
|
|
import com.ots.project.exam.domain.TExamPaper;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* 产品包列表Mapper接口
|
*
|
* @author ots
|
* @date 2019-11-20
|
*/
|
public interface TExamPaperMapper {
|
/**
|
* 查询产品包列表
|
*
|
* @param id 产品包列表ID
|
* @return 产品包列表
|
*/
|
TExamPaper selectTExamPaperById(Long id);
|
|
/**
|
* 查询产品包列表列表
|
*
|
* @param tExamPaper 产品包列表
|
* @return 产品包列表集合
|
*/
|
List<TExamPaper> selectTExamPaperList(TExamPaper tExamPaper);
|
|
/**
|
* 新增产品包列表
|
*
|
* @param tExamPaper 产品包列表
|
* @return 结果
|
*/
|
int insertTExamPaper(TExamPaper tExamPaper);
|
|
/**
|
* 修改产品包列表
|
*
|
* @param tExamPaper 产品包列表
|
* @return 结果
|
*/
|
int updateTExamPaper(TExamPaper tExamPaper);
|
|
/**
|
* 删除产品包列表
|
*
|
* @param id 产品包列表ID
|
* @return 结果
|
*/
|
int deleteTExamPaperById(Long id);
|
|
/**
|
* 批量删除产品包列表
|
*
|
* @param ids 需要删除的数据ID
|
* @return 结果
|
*/
|
int deleteTExamPaperByIds(String[] ids);
|
|
int updateByDelete(String[] ids);
|
|
List<TExamPaper> selectProdByDeleteList(Map params);
|
|
String selectEPaperMaxVBypermanentId(TExamPaper tExamPaper);
|
|
int updateTExamPaperVersion(TExamPaper tExamPaper);
|
}
|