UserAskQuestionRelationMapper.java 884 B

123456789101112131415161718192021222324252627
  1. package com.qxgmat.data.relation;
  2. import com.qxgmat.data.dao.entity.UserAskQuestion;
  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 UserAskQuestionRelationMapper {
  9. List<UserAskQuestion> listWithUser(
  10. @Param("askModule") String askModule,
  11. @Param("questionType") String questionType,
  12. @Param("module") String module,
  13. @Param("userId") Number userId,
  14. @Param("questionNoId") Number questionNoId,
  15. @Param("target") String target,
  16. @Param("answerStatus") Integer answerStatus,
  17. @Param("showStatus") Integer showStatus,
  18. @Param("min") Integer min,
  19. @Param("max") Integer max,
  20. @Param("hasRecord") Boolean hasRecord,
  21. String order,
  22. String direction
  23. );
  24. }