ExercisePaperRelationMapper.java 611 B

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