account.java
来自「滑动窗口仿真程序」· Java 代码 · 共 66 行
JAVA
66 行
package com.tarena.account.persistence;
/**
* Account generated by MyEclipse Persistence Tools
*/
public class Account implements java.io.Serializable {
// Fields
private Long accountid;
private String username;
private String password;
private String description;
// Constructors
/** default constructor */
public Account() {
}
/** full constructor */
public Account(String username, String password, String description) {
this.username = username;
this.password = password;
this.description = description;
}
// Property accessors
public Long getAccountid() {
return this.accountid;
}
public void setAccountid(Long accountid) {
this.accountid = accountid;
}
public String getUsername() {
return this.username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?