package com.thhy.secure.modules.biz.exam.mapper;
|
|
import com.thhy.secure.modules.biz.exam.entity.*;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Mapper 接口
|
* @author zhang_xiao_bo
|
* @since 2023-05-26 09:14:42
|
*/
|
@Component
|
public interface ExamMapper {
|
|
|
Exam queryById(Serializable examId);
|
|
Integer queryVersionById(Serializable examId);
|
|
List<ExamListVo> findList(ExamDto examDto);
|
|
List<ExamListVo> miniList(ExamDto examDto);
|
|
List<ExamSampleVo> examList(ExamDto examDto);
|
|
List<Exam> findAll();
|
|
void insert(Exam exam);
|
|
void update(Exam exam);
|
|
void deletelogic(Serializable examId);
|
|
void deleteById(Serializable examId);
|
|
List<ExamSampleListVo> examReportList(ExamDto examDto);
|
|
String queryPlatUser(String userId);
|
}
|