📄 customerdao.java
字号:
package com.bjsxt.crm.dao;
import java.util.List;
import com.bjsxt.crm.model.Customer;
public interface CustomerDAO {
public void save(Customer customer);
public void update(Customer customer);
public void delete(Customer customer);
public Customer findById(int customerId);
public List findAll();
public List find(String name, int userId);
public List findCompanyCustomer(String name, int userId);
public List findPersonalCustomer(String name, int userId);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -