📄 account.java
字号:
package org.myrose.bean;
import java.util.Date;
/**
* Account generated by MyEclipse - Hibernate Tools
*/
public class Account implements java.io.Serializable {
// Fields
private String id;
private String name;
private String password;
private String identitycard;
private String openbank;
private Double balance;
private Date opendate;
private String status;
// Constructors
/** default constructor */
public Account() {
}
/** full constructor */
public Account(String id, String name, String password, String identitycard, String openbank, Double balance, Date opendate, String status) {
this.id = id;
this.name = name;
this.password = password;
this.identitycard = identitycard;
this.openbank = openbank;
this.balance = balance;
this.opendate = opendate;
this.status = status;
}
// Property accessors
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public String getIdentitycard() {
return this.identitycard;
}
public void setIdentitycard(String identitycard) {
this.identitycard = identitycard;
}
public String getOpenbank() {
return this.openbank;
}
public void setOpenbank(String openbank) {
this.openbank = openbank;
}
public Double getBalance() {
return this.balance;
}
public void setBalance(Double balance) {
this.balance = balance;
}
public Date getOpendate() {
return this.opendate;
}
public void setOpendate(Date opendate) {
this.opendate = opendate;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -