package com.qxgmat.data.relation; import com.qxgmat.data.dao.entity.UserNoteQuestion; import org.apache.ibatis.annotations.Param; import java.util.Date; import java.util.List; /** * Created by gaojie on 2017/11/9. */ public interface UserNoteQuestionRelationMapper { List listExercise( @Param("userId") Number userId, @Param("keyword") String keyword, @Param("questionTypes") String[] questionTypes, @Param("courseModules") String[] courseModules, @Param("structIds") Integer[] structIds, @Param("startTime") Date startTime, @Param("endTime") Date endTime, String order ); List listExamination( @Param("userId") Number userId, @Param("keyword") String keyword, @Param("questionTypes") String[] questionTypes, @Param("structIds") Integer[] structIds, @Param("libraryId") Integer libraryId, @Param("year") String year, @Param("startTime") Date startTime, @Param("endTime") Date endTime, String order ); }