StoreMapper.java
306 Bytes
package com.yoho.search.dal;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.yoho.search.dal.model.Store;
public interface StoreMapper {
List<Store> getPageLists(@Param(value = "offset") Integer offset, @Param(value = "pageSize") Integer pageSize);
int count();
}