1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 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.List;
- /**
- * Created by gaojie on 2017/11/9.
- */
- public interface UserPaperRelationMapper {
- List<UserPaper> listPreviewAdmin(
- @Param("category") Number category,
- @Param("userId") Number userId,
- @Param("previewId") Number previewId,
- @Param("startTime") String startTime,
- @Param("endTime") String endTime
- );
- List<UserPaper> listPreview(
- @Param("category") Number category,
- @Param("userId") Number userId,
- @Param("endTime") String endTime,
- @Param("finish") Boolean finish
- );
- List<UserPaper> listPreviewGroupTop(
- @Param("userId") Number userId,
- @Param("top") Number top
- );
- List<UserPaper> listExercisePaper(
- @Param("structId") Number structId,
- @Param("userId") Number userId,
- @Param("logic") String logic,
- @Param("logicExtend") String logicExtend,
- @Param("times") Integer times
- );
- void accumulation(
- @Param("id") Number userPaperId,
- @Param("number") Integer number,
- @Param("time") Integer time,
- @Param("current") Integer current,
- @Param("times") Integer times
- );
- }
|