📄 icustomerservice.java
字号:
/**
*
*/
package com.ascent.business;
import java.util.List;
import com.ascent.bean.Customer;
public interface ICustomerService {
/**
*
* @param Customer
* @return Customer
*/
public Customer saveCustomer(Customer customer);
/**
*
* @param id Integer
*
* @return Customer
*/
public Customer getCustomer(int id);
/**
*
* @return List
*/
public List findCustomerAll();
/**
*
* @param type String
*
* @return List
*/
public List findCustomerByName(String name);
/**
*
* @param Customer
*
*/
public void removeCustomer(Customer customer);
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -