?? account.java
字號:
package com.icome.entity;
import java.util.Date;
import java.util.HashSet;
import java.util.Set;
/**
* Account generated by MyEclipse - Hibernate Tools
*/
public class Account implements java.io.Serializable {
// Fields
private String uid;
private String pwd;
private Date rdt;
private String realname;
private Integer sex;
private Date birthday;
private String university;
private String department;
private String email;
private String msn;
private String qq;
private String telephone;
private String cellphone;
private String address;
private String zipcode;
private String about;
private String url;
private Set memberships = new HashSet(0);
private Set messagesForSrc = new HashSet(0);
private Set contentsForUid = new HashSet(0);
private Set contentsForWriter = new HashSet(0);
private Set projects = new HashSet(0);
private Set messagesForDest = new HashSet(0);
// Constructors
/** default constructor */
public Account() {
}
/** minimal constructor */
public Account(String uid, String pwd) {
this.uid = uid;
this.pwd = pwd;
}
/** full constructor */
public Account(String uid, String pwd, Date rdt, String realname, Integer sex, Date birthday, String university, String department, String email, String msn, String qq, String telephone, String cellphone, String address, String zipcode, String about, String url, Set memberships, Set messagesForSrc, Set contentsForUid, Set contentsForWriter, Set projects, Set messagesForDest) {
this.uid = uid;
this.pwd = pwd;
this.rdt = rdt;
this.realname = realname;
this.sex = sex;
this.birthday = birthday;
this.university = university;
this.department = department;
this.email = email;
this.msn = msn;
this.qq = qq;
this.telephone = telephone;
this.cellphone = cellphone;
this.address = address;
this.zipcode = zipcode;
this.about = about;
this.url = url;
this.memberships = memberships;
this.messagesForSrc = messagesForSrc;
this.contentsForUid = contentsForUid;
this.contentsForWriter = contentsForWriter;
this.projects = projects;
this.messagesForDest = messagesForDest;
}
// Property accessors
public String getUid() {
return this.uid;
}
public void setUid(String uid) {
this.uid = uid;
}
public String getPwd() {
return this.pwd;
}
public void setPwd(String pwd) {
this.pwd = pwd;
}
public Date getRdt() {
return this.rdt;
}
public void setRdt(Date rdt) {
this.rdt = rdt;
}
public String getRealname() {
return this.realname;
}
public void setRealname(String realname) {
this.realname = realname;
}
public Integer getSex() {
return this.sex;
}
public void setSex(Integer sex) {
this.sex = sex;
}
public Date getBirthday() {
return this.birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public String getUniversity() {
return this.university;
}
public void setUniversity(String university) {
this.university = university;
}
public String getDepartment() {
return this.department;
}
public void setDepartment(String department) {
this.department = department;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getMsn() {
return this.msn;
}
public void setMsn(String msn) {
this.msn = msn;
}
public String getQq() {
return this.qq;
}
public void setQq(String qq) {
this.qq = qq;
}
public String getTelephone() {
return this.telephone;
}
public void setTelephone(String telephone) {
this.telephone = telephone;
}
public String getCellphone() {
return this.cellphone;
}
public void setCellphone(String cellphone) {
this.cellphone = cellphone;
}
public String getAddress() {
return this.address;
}
public void setAddress(String address) {
this.address = address;
}
public String getZipcode() {
return this.zipcode;
}
public void setZipcode(String zipcode) {
this.zipcode = zipcode;
}
public String getAbout() {
return this.about;
}
public void setAbout(String about) {
this.about = about;
}
public String getUrl() {
return this.url;
}
public void setUrl(String url) {
this.url = url;
}
public Set getMemberships() {
return this.memberships;
}
public void setMemberships(Set memberships) {
this.memberships = memberships;
}
public Set getMessagesForSrc() {
return this.messagesForSrc;
}
public void setMessagesForSrc(Set messagesForSrc) {
this.messagesForSrc = messagesForSrc;
}
public Set getContentsForUid() {
return this.contentsForUid;
}
public void setContentsForUid(Set contentsForUid) {
this.contentsForUid = contentsForUid;
}
public Set getContentsForWriter() {
return this.contentsForWriter;
}
public void setContentsForWriter(Set contentsForWriter) {
this.contentsForWriter = contentsForWriter;
}
public Set getProjects() {
return this.projects;
}
public void setProjects(Set projects) {
this.projects = projects;
}
public Set getMessagesForDest() {
return this.messagesForDest;
}
public void setMessagesForDest(Set messagesForDest) {
this.messagesForDest = messagesForDest;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -