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

📄 access.java

📁 论坛软件系统亦称电子公告板(BBS)系统
💻 JAVA
字号:
package cn.jsprun.domain;
public class Access  implements java.io.Serializable {

	private static final long serialVersionUID = 8883093033243273859L;
	private AccessId id;
     private Byte allowview;
     private Byte allowpost;
     private Byte allowreply;
     private Byte allowgetattach;
     private Byte allowpostattach;
    public Access() {
    }
    public Access(AccessId id, Byte allowview, Byte allowpost, Byte allowreply, Byte allowgetattach, Byte allowpostattach) {
        this.id = id;
        this.allowview = allowview;
        this.allowpost = allowpost;
        this.allowreply = allowreply;
        this.allowgetattach = allowgetattach;
        this.allowpostattach = allowpostattach;
    }

    public AccessId getId() {
        return this.id;
    }
    
    public void setId(AccessId id) {
        this.id = id;
    }

    public Byte getAllowview() {
        return this.allowview;
    }
    
    public void setAllowview(Byte allowview) {
        this.allowview = allowview;
    }

    public Byte getAllowpost() {
        return this.allowpost;
    }
    
    public void setAllowpost(Byte allowpost) {
        this.allowpost = allowpost;
    }

    public Byte getAllowreply() {
        return this.allowreply;
    }
    
    public void setAllowreply(Byte allowreply) {
        this.allowreply = allowreply;
    }

    public Byte getAllowgetattach() {
        return this.allowgetattach;
    }
    
    public void setAllowgetattach(Byte allowgetattach) {
        this.allowgetattach = allowgetattach;
    }

    public Byte getAllowpostattach() {
        return this.allowpostattach;
    }
    
    public void setAllowpostattach(Byte allowpostattach) {
        this.allowpostattach = allowpostattach;
    }
   








}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -