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

📄 customerdao.java

📁 简单的struts框架的应用 实现对数据库的增删改查
💻 JAVA
字号:
package com.lc.zyz.model.persistence.dao;

import java.util.Iterator;

import com.lc.zyz.model.domain.CustomerInfo;


public interface CustomerDao {
	boolean addCustomer(CustomerInfo ci) throws Exception;//添加
	boolean updateCustomer(CustomerInfo ci) throws Exception;//修改
	boolean deleteCustomer(String cusId) throws Exception;//删除
	Iterator getAllCustomer() throws Exception;//查询全部
	CustomerInfo getCustomerById(String cusId) throws Exception;//查询BY编号
}

⌨️ 快捷键说明

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