⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abstractuser.java

📁 Struts_Spring_Hibernate实现的基于RBAC的权限管理系统
💻 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 + -