1234567891011121314151617181920212223242526272829303132333435 |
- 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<UserNoteQuestion> 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<UserNoteQuestion> 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
- );
- }
|