ExercisePaperRelationMapper.java 668 B

123456789101112131415161718192021222324
  1. package com.qxgmat.data.relation;
  2. import com.qxgmat.data.dao.entity.ExercisePaper;
  3. import com.qxgmat.data.dao.entity.ExercisePaperQuestion;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.List;
  6. /**
  7. * Created by gaojie on 2017/11/9.
  8. */
  9. public interface ExercisePaperRelationMapper {
  10. List<ExercisePaper> groupPlace(
  11. @Param("structId") Number structId
  12. );
  13. List<ExercisePaper> listWithUser(
  14. @Param("structId") Number structId,
  15. @Param("userId") Number userId,
  16. @Param("logic") String logic,
  17. @Param("logicExtend") String logicExtend,
  18. @Param("times") Integer times
  19. );
  20. }