CommentMapper.java 312 Bytes
package com.yoho.search.dal;

import java.util.List;

import org.apache.ibatis.annotations.Param;

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

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

    int count();
}