www.pudn.com > ssh1.rar > Account.java
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;
}
}