| | |
| | | package com.gkhy.exam.system.mapper; |
| | | |
| | | import com.gkhy.exam.system.domain.ExStudentAnswer; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.gkhy.exam.system.domain.ExPaperStudent; |
| | | import com.gkhy.exam.system.domain.ExStudentAnswer; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | |
| | | ExStudentAnswer getStudentAnswer(ExStudentAnswer studentAnswer); |
| | | |
| | | void deletedByPaperStudentId(@Param("paperId") Long paperId, @Param("studentId") Long studentId); |
| | | |
| | | void updateState(ExPaperStudent exPaperStudent); |
| | | } |