123456789101112131415161718192021 |
- package com.qxgmat.data.relation;
- import org.apache.ibatis.annotations.Param;
- /**
- * Created by gaojie on 2017/11/9.
- */
- public interface SentenceQuestionRelationMapper {
- void accumulation(
- @Param("id") Number sentenceQuestionId,
- @Param("number") Integer number,
- @Param("time") Integer time,
- @Param("correct") Integer correct
- );
- void accumulationCollect(
- @Param("id") Number questionNoId,
- @Param("collect") int collect
- );
- }
|