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

📄 myposts.java

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

	private static final long serialVersionUID = -7634663492322187279L;
	private MypostsId id;
     private Integer pid;
     private Short position;
     private Integer dateline;
     private Byte special;
    public Myposts() {
    }

    public Myposts(MypostsId id, Integer pid, Short position, Integer dateline, Byte special) {
        this.id = id;
        this.pid = pid;
        this.position = position;
        this.dateline = dateline;
        this.special = special;
    }

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

    public Integer getPid() {
        return this.pid;
    }
    
    public void setPid(Integer pid) {
        this.pid = pid;
    }

    public Short getPosition() {
        return this.position;
    }
    
    public void setPosition(Short position) {
        this.position = position;
    }

    public Integer getDateline() {
        return this.dateline;
    }
    
    public void setDateline(Integer dateline) {
        this.dateline = dateline;
    }

    public Byte getSpecial() {
        return this.special;
    }
    
    public void setSpecial(Byte special) {
        this.special = special;
    }
   








}

⌨️ 快捷键说明

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