trans.java

来自「网上银行EJB版本」· Java 代码 · 共 24 行

JAVA
24
字号
package mypackage;
import javax.ejb.EJBObject;
import java.rmi.RemoteException;

public interface Trans extends EJBObject 
{
  String getTranstime() throws RemoteException;

  String getAccountsa() throws RemoteException;

  void setAccountsa(String accountsa) throws RemoteException;

  String getAccountsb() throws RemoteException;

  void setAccountsb(String accountsb) throws RemoteException;

  String getPayment() throws RemoteException;

  void setPayment(String payment) throws RemoteException;

  String getReceive() throws RemoteException;

  void setReceive(String receive) throws RemoteException;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?