?? icustomerdao.java
字號:
/**
*
*/
package com.ascent.dao;
import java.util.List;
import com.ascent.bean.Customer;
public interface ICustomerDAO {
/**
*
* @param Customer
* @return Customer
*/
public Customer saveCustomer(Customer customer);
/**
*
* @param id
* Integer
*
* @return Customer
*/
public Customer getCustomer(Integer id);
/**
*
* @return List
*/
public List findCustomerAll();
/**
*
* @param type
* String
*
* @return List
*/
public List findCustomerByName(String name);
/**
*
* @param Customer
*
*/
public Customer updateCustomer(Customer customer);
public void removeCustomer(Customer customer);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -