?? bugusermodel.java
字號:
package com.runwit.ebookstore.model;
import java.util.LinkedHashSet;
import java.util.Set;
public class BugUserModel {
private long userId;
private String account;
private String password;
private String name;
private String sex;
private String dept;
private String duty;
private String phone;
private String mpPhone;
private BugPrivModel[] bugPrivs;
private String email;
private long createTime;
private int lockState;
private Set groups = new LinkedHashSet();
public BugUserModel() {
// TODO Auto-generated constructor stub
}
public BugUserModel(long userId, String account, String password, String name, String sex, String dept, String duty, String phone, String mpPhone, BugPrivModel[] bugPrivs, String email, long createTime, int lockState) {
super();
this.userId = userId;
this.account = account;
this.password = password;
this.name = name;
this.sex = sex;
this.dept = dept;
this.duty = duty;
this.phone = phone;
this.mpPhone = mpPhone;
this.bugPrivs = bugPrivs;
this.email = email;
this.createTime = createTime;
this.lockState = lockState;
}
public void setGroups(Set groups) {
this.groups = groups;
}
public Set getGroups() {
return groups;
}
public String getAccount() {
return account;
}
public void setAccount(String account) {
this.account = account;
}
public BugPrivModel[] getBugPrivs() {
return bugPrivs;
}
public void setBugPrivs(BugPrivModel[] bugPrivs) {
this.bugPrivs = bugPrivs;
}
public long getCreateTime() {
return createTime;
}
public void setCreateTime(long createTime) {
this.createTime = createTime;
}
public String getDept() {
return dept;
}
public void setDept(String dept) {
this.dept = dept;
}
public String getDuty() {
return duty;
}
public void setDuty(String duty) {
this.duty = duty;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public int getLockState() {
return lockState;
}
public void setLockState(int lockState) {
this.lockState = lockState;
}
public String getMpPhone() {
return mpPhone;
}
public void setMpPhone(String mpPhone) {
this.mpPhone = mpPhone;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public long getUserId() {
return userId;
}
public void setUserId(long userId) {
this.userId = userId;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -