⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 transaction.java

📁 网上银行EJB版本
💻 JAVA
字号:
package mypackage;
import java.io.Serializable;

public class Transaction implements Serializable
{
  String accountsa = null;
  String accountsb = null;
  String payment = null;
  String receive = null;
  String transtime = null;
  
  public Transaction(String accountsa, String accountsb, String payment, String receive, String transtime){
    this.accountsa = accountsa;
    this.accountsb = accountsb;
    this.payment = payment;
    this.receive = receive;
    this.transtime = transtime;
  }
  public void setAccountsa(String accountsa){
    this.accountsa = accountsa;
  }
  public void setAccountsb(String accountsb){
    this.accountsb = accountsb;
  }
  public void setPayment(String payment){
    this.payment = payment;
  }
  public void setReceive(String receive){
    this.receive = receive;
  }
  public void setTranstime(String transtime){
    this.transtime = transtime;
  }
  public String getAccountsa(){
    return this.accountsa;
  }
  public String getAccountsb(){
    return this.accountsb;
  }
  public String getPayment(){
    return this.payment;
  }
  public String getReceive(){
    return this.receive;
  }
  public String getTranstime(){
    return this.transtime;
  }
}

⌨️ 快捷键说明

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