📄 persondao.java
字号:
package org.lxh.dao;
import java.util.List;
public interface PersonDAO {
// 得到全部的记录数
public int getAllCount() throws Exception;
// 得到模糊查询的记录数
public int getByLikeCount(String cond) throws Exception;
// 得到全部的记录
public List queryAll(int currentPage, int lineSize) throws Exception;
// 模糊查询记录
public List queryByLike(String cond, int currentPage, int lineSize)
throws Exception;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -