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

📄 tcustomerdao.java

📁 这是我在东方标准学习的时候做的一个项目
💻 JAVA
字号:
package dao.product;

import java.sql.SQLException;
import java.util.List;

import bean.TCustomer;

public interface TCustomerDAO {

	public boolean add(TCustomer custom);

	public boolean update(TCustomer custom);

	public boolean delete(int customer_id);

	public TCustomer findById(int customer_id);

	public TCustomer findByIdInfo(String id_type, String id_number)
			throws SQLException;

	public List findAll();

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -