?? account.java
字號:
package springexample.commands;
import java.math.BigDecimal;
/**
* @author naveenb
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class Account {
private String accountName;
private String accountType;
private BigDecimal accountbalance;
private String accountNumber;
/**
* @return Returns the accountbalance.
*/
public BigDecimal getAccountbalance() {
return accountbalance;
}
/**
* @param accountbalance The accountbalance to set.
*/
public void setAccountbalance(BigDecimal accountbalance) {
this.accountbalance = accountbalance;
}
/**
* @return Returns the accountName.
*/
public String getAccountName() {
return accountName;
}
/**
* @param accountName The accountName to set.
*/
public void setAccountName(String accountName) {
this.accountName = accountName;
}
/**
* @return Returns the accountType.
*/
public String getAccountType() {
return accountType;
}
/**
* @param accountType The accountType to set.
*/
public void setAccountType(String accountType) {
this.accountType = accountType;
}
/**
* @return Returns the accountNumber.
*/
public String getAccountNumber() {
return accountNumber;
}
/**
* @param accountNumber The accountNumber to set.
*/
public void setAccountNumber(String accountNumber) {
this.accountNumber = accountNumber;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -