package com.thhy.secure.modules.biz.exam.mapper; import com.thhy.secure.modules.biz.exam.entity.ExamReAnswer; import org.springframework.stereotype.Component; import java.io.Serializable; import java.util.List; /** * Mapper 接口 * @author zhang_xiao_bo * @since 2023-05-26 15:53:19 */ @Component public interface ExamReAnswerMapper { ExamReAnswer queryById(Serializable id); Integer queryVersionById(Serializable id); List findList(ExamReAnswer examreanswer); List findAll(); int countByRecordId(String recordId); void insert(ExamReAnswer examreanswer); void update(ExamReAnswer examreanswer); void deletelogic(Serializable id); void deleteById(Serializable id); double examScoreCul(String recordId); }