📄 customerdao.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 + -