package com.gkhy.exam.system.service;
|
|
import com.gkhy.exam.common.api.CommonPage;
|
import com.gkhy.exam.system.domain.ExExamRecord;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import org.springframework.web.multipart.MultipartFile;
|
|
/**
|
* <p>
|
* 线下教育登记表 服务类
|
* </p>
|
*
|
* @author kzy
|
* @since 2024-06-24 16:16:33
|
*/
|
public interface ExExamRecordService extends IService<ExExamRecord> {
|
/**
|
* 根据条件分页查询登记列表
|
* @param examRecord
|
* @return
|
*/
|
CommonPage selectExamRecordList(ExExamRecord examRecord);
|
|
|
/**
|
* 根据id查询登记信息
|
*
|
* @param recordId
|
* @return
|
*/
|
public ExExamRecord selectExamRecordById(Long recordId);
|
|
|
/**
|
* 新增登记记录
|
*
|
* @param examRecord
|
* @return 结果
|
*/
|
public int insertExamRecord(ExExamRecord examRecord);
|
|
|
/**
|
* 修改登记记录
|
*
|
* @param examRecord
|
* @return 结果
|
*/
|
public int updateExamRecord(ExExamRecord examRecord);
|
|
/**
|
* 删除登记记录
|
*
|
* @param recordId
|
* @return 结果
|
*/
|
public int deleteExamRecordById(Long recordId);
|
|
|
/**
|
* 校验登记记录是否唯一
|
*
|
* @param examRecord
|
* @return boolean
|
*/
|
public boolean checkRecordUnique(ExExamRecord examRecord);
|
|
/**
|
* 导入登记记录
|
*/
|
public void importRecord(MultipartFile file);
|
|
}
|