📄 customerdao.java
字号:
package com.magic.mobile.dao;
import com.magic.mobile.exception.NotFoundCustomerException;
import com.magic.mobile.vo.Customer;
public interface CustomerDAO {
//添加客户
public boolean addCustomer(Customer customer);
//更新客户
public boolean updateCustomer(Customer customer);
//得到客户
public void getCustomer();
//查询客户
public Customer selectCustomer(Customer customer)throws NotFoundCustomerException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -