UserPaperRelationMapper.java 652 B

123456789101112131415161718192021222324
  1. package com.qxgmat.data.relation;
  2. import com.qxgmat.data.dao.entity.UserPaper;
  3. import com.qxgmat.data.relation.entity.UserStudyStatRelation;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.Collection;
  6. import java.util.Date;
  7. import java.util.List;
  8. /**
  9. * Created by gaojie on 2017/11/9.
  10. */
  11. public interface UserPaperRelationMapper {
  12. void accumulation(
  13. @Param("id") Number userPaperId,
  14. @Param("number") Integer number,
  15. @Param("time") Integer time,
  16. @Param("correct") Integer correct,
  17. @Param("times") Integer times,
  18. @Param("latestTime") Date latestTime
  19. );
  20. }