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 findList(ExamDto examDto); List miniList(ExamDto examDto); List examList(ExamDto examDto); List findAll(); void insert(Exam exam); void update(Exam exam); void deletelogic(Serializable examId); void deleteById(Serializable examId); List examReportList(ExamDto examDto); String queryPlatUser(String userId); }