?? abstractuser.java
字號:
package com.xaccp.biz.po;
// default package
import java.sql.Blob;
import java.util.HashSet;
import java.util.Set;
/**
* AbstractUser generated by MyEclipse - Hibernate Tools
*/
public abstract class AbstractUser implements java.io.Serializable {
// Fields
private Integer id;
private String name;
private String pass;
private Integer strategy = 1;
private Blob face;
private Set tblUserRoles = new HashSet(0);
private Set tblUserPowers = new HashSet(0);
// Constructors
/** default constructor */
public AbstractUser() {
}
/** full constructor */
public AbstractUser(String name, String pass, Blob face, Set tblUserRoles, Set tblUserPowers) {
this.name = name;
this.pass = pass;
this.face = face;
this.tblUserRoles = tblUserRoles;
this.tblUserPowers = tblUserPowers;
}
// Property accessors
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getPass() {
return this.pass;
}
public void setPass(String pass) {
this.pass = pass;
}
public Blob getFace() {
return this.face;
}
public void setFace(Blob face) {
this.face = face;
}
public Set getTblUserRoles() {
return this.tblUserRoles;
}
public void setTblUserRoles(Set tblUserRoles) {
this.tblUserRoles = tblUserRoles;
}
public Set getTblUserPowers() {
return this.tblUserPowers;
}
public void setTblUserPowers(Set tblUserPowers) {
this.tblUserPowers = tblUserPowers;
}
public Integer getStrategy() {
return strategy;
}
public void setStrategy(Integer strategy) {
this.strategy = strategy;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -