📄 consumer.java
字号:
package mypackage;
import javax.ejb.EJBObject;
import java.rmi.RemoteException;
public interface Consumer extends EJBObject
{
String getAccounts() throws RemoteException;
String getUsername() throws RemoteException;
void setUsername(String username) throws RemoteException;
String getPassword() throws RemoteException;
void setPassword(String password) throws RemoteException;
String getCid() throws RemoteException;
void setCid(String cid) throws RemoteException;
String getSex() throws RemoteException;
void setSex(String sex) throws RemoteException;
String getBalance() throws RemoteException;
void setBalance(String balance) throws RemoteException;
String getMiss() throws RemoteException;
void setMiss(String miss) throws RemoteException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -