📄 customer.java
字号:
package com.entity.cmp;import java.rmi.RemoteException;import javax.ejb.EJBObject;import java.math.*;import java.sql.*;/** * This is the Customer interface. * * @Author: Siddhartha P. Chandurkar * @version $ID: $ * */public interface Customer extends EJBObject{ //Get Methods Integer getCustId() throws RemoteException; String getFirstName() throws RemoteException; String getLastName() throws RemoteException; //Set methods void setCustId(Integer _custId) throws RemoteException; void setFirstName(String _firstName) throws RemoteException; void setLastName(String _lastName) throws RemoteException; /** * Write your manual code between these tags. They will be retained if code is * regenerated. * IMPORTANT !!! Please do not remove these tags even if you dont add any manual code */ //<manual-code> //</manual-code>}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -