TopicMapper.java 307 Bytes
package com.yoho.search.dal;

import java.util.List;

import org.apache.ibatis.annotations.Param;

import com.yoho.search.dal.model.Topic;


public interface TopicMapper {
    List<Topic> getPageLists(@Param(value = "offset") Integer offset, @Param(value = "pageSize") Integer pageSize);

    int count();
}