12345678910111213141516171819202122232425262728293031 |
- package com.qxgmat.data.relation;
- import com.qxgmat.data.dao.entity.UserAsk;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- /**
- * Created by gaojie on 2017/11/9.
- */
- public interface UserAskRelationMapper {
- List<UserAsk> listWithUser(
- @Param("category") Number category,
- @Param("userId") Number userId,
- @Param("questionId") Number questionId,
- @Param("target") String target,
- @Param("status") Integer status,
- @Param("showStatus") Integer showStatus,
- @Param("min") Integer min,
- @Param("max") Integer max,
- String order,
- String direction
- );
- void adjust(
- @Param("questionId") Number questionId,
- @Param("order") Integer order,
- @Param("direction") String direction,
- @Param("flag") String flag
- );
- }
|