12345678910111213141516171819202122232425262728 |
- package com.qxgmat.data.relation;
- import com.qxgmat.data.dao.entity.ExercisePaper;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * Created by gaojie on 2017/11/9.
- */
- public interface ExaminationPaperRelationMapper {
- void accumulation(
- @Param("id") Number paperId,
- @Param("totalScore") Integer totalScore,
- @Param("quantScore") Integer quantScore,
- @Param("verbalScore") Integer verbalScore,
- @Param("irScore") Integer irScore,
- @Param("second") Boolean second
- );
- List<ExercisePaper> listWithUser(
- @Param("structId") Number structId,
- @Param("userId") Number userId,
- @Param("qxCat") Integer qxCat,
- @Param("times") Integer times
- );
- }
|