123456789101112131415161718192021222324252627 |
- package com.qxgmat.data.relation;
- import com.qxgmat.data.dao.entity.UserAskQuestion;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * Created by gaojie on 2017/11/9.
- */
- public interface UserAskQuestionRelationMapper {
- List<UserAskQuestion> listWithUser(
- @Param("askModule") String askModule,
- @Param("questionType") String questionType,
- @Param("module") String module,
- @Param("userId") Number userId,
- @Param("questionNoId") Number questionNoId,
- @Param("target") String target,
- @Param("answerStatus") Integer answerStatus,
- @Param("showStatus") Integer showStatus,
- @Param("min") Integer min,
- @Param("max") Integer max,
- @Param("hasRecord") Boolean hasRecord,
- String order,
- String direction
- );
- }
|