BizAreaMapper.java 313 Bytes
package com.yoho.search.dal;

import java.util.List;

import org.apache.ibatis.annotations.Param;

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


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

    int count();
}