public interface RouteDao { | |
// 根据 cid 查询总记录数 | |
public int findTotalCount(int cid); | |
// 根据 cid,start,pageSize 查询当前页的数据集合 | |
public List<Route> findByPage(int cid,int start,int pageSize); | |
} |
public interface RouteDao { | |
// 根据 cid 查询总记录数 | |
public int findTotalCount(int cid); | |
// 根据 cid,start,pageSize 查询当前页的数据集合 | |
public List<Route> findByPage(int cid,int start,int pageSize); | |
} |