SentenceQuestionRelationMapper.java 516 B

123456789101112131415161718192021
  1. package com.qxgmat.data.relation;
  2. import org.apache.ibatis.annotations.Param;
  3. /**
  4. * Created by gaojie on 2017/11/9.
  5. */
  6. public interface SentenceQuestionRelationMapper {
  7. void accumulation(
  8. @Param("id") Number sentenceQuestionId,
  9. @Param("number") Integer number,
  10. @Param("time") Integer time,
  11. @Param("correct") Integer correct
  12. );
  13. void accumulationCollect(
  14. @Param("id") Number questionNoId,
  15. @Param("collect") int collect
  16. );
  17. }