📄 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 + -