123456789101112131415161718192021222324 |
- package com.qxgmat.data.relation;
- import com.qxgmat.data.dao.entity.UserPaper;
- import com.qxgmat.data.relation.entity.UserStudyStatRelation;
- import org.apache.ibatis.annotations.Param;
- import java.util.Collection;
- import java.util.Date;
- import java.util.List;
- /**
- * Created by gaojie on 2017/11/9.
- */
- public interface UserPaperRelationMapper {
- void accumulation(
- @Param("id") Number userPaperId,
- @Param("number") Integer number,
- @Param("time") Integer time,
- @Param("correct") Integer correct,
- @Param("times") Integer times,
- @Param("latestTime") Date latestTime
- );
- }
|