ExaminationPaperRelationMapper.java 795 B

12345678910111213141516171819202122232425262728
  1. package com.qxgmat.data.relation;
  2. import com.qxgmat.data.dao.entity.ExercisePaper;
  3. import org.apache.ibatis.annotations.Param;
  4. import java.util.List;
  5. /**
  6. * Created by gaojie on 2017/11/9.
  7. */
  8. public interface ExaminationPaperRelationMapper {
  9. void accumulation(
  10. @Param("id") Number paperId,
  11. @Param("totalScore") Integer totalScore,
  12. @Param("quantScore") Integer quantScore,
  13. @Param("verbalScore") Integer verbalScore,
  14. @Param("irScore") Integer irScore,
  15. @Param("second") Boolean second
  16. );
  17. List<ExercisePaper> listWithUser(
  18. @Param("structId") Number structId,
  19. @Param("userId") Number userId,
  20. @Param("qxCat") Integer qxCat,
  21. @Param("times") Integer times
  22. );
  23. }