⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 persondao.java

📁 一款仿msdn聊天程序,用java编写,很好用!
💻 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 + -