?? icustomerservice.java
字號(hào):
package com.briup.service;
import com.briup.bean.Customer;
import com.briup.common.exception.CustomerServiceException;
public interface ICustomerService {
//用戶注冊(cè)
void register(Customer customer) throws CustomerServiceException;
//用戶登陸
Customer login(String name,String password) throws CustomerServiceException;
//用戶更新
void update(Customer customer) throws CustomerServiceException;
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -