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

📄 polloptions.java

📁 论坛软件系统亦称电子公告板(BBS)系统
💻 JAVA
字号:
package cn.jsprun.domain;

public class Polloptions  implements java.io.Serializable {
	private static final long serialVersionUID = 7354973088876137790L;
     private Integer polloptionid;
     private Integer tid;
     private Integer votes;
     private Short displayorder;
     private String polloption;
     private String voterids;
    public Polloptions() {
    }
    public Polloptions(Integer tid, Integer votes, Short displayorder, String polloption, String voterids) {
        this.tid = tid;
        this.votes = votes;
        this.displayorder = displayorder;
        this.polloption = polloption;
        this.voterids = voterids;
    }

    public Integer getPolloptionid() {
        return this.polloptionid;
    }
    
    public void setPolloptionid(Integer polloptionid) {
        this.polloptionid = polloptionid;
    }

    public Integer getTid() {
        return this.tid;
    }
    
    public void setTid(Integer tid) {
        this.tid = tid;
    }

    public Integer getVotes() {
        return this.votes;
    }
    
    public void setVotes(Integer votes) {
        this.votes = votes;
    }

    public Short getDisplayorder() {
        return this.displayorder;
    }
    
    public void setDisplayorder(Short displayorder) {
        this.displayorder = displayorder;
    }

    public String getPolloption() {
        return this.polloption;
    }
    
    public void setPolloption(String polloption) {
        this.polloption = polloption;
    }

    public String getVoterids() {
        return this.voterids;
    }
    
    public void setVoterids(String voterids) {
        this.voterids = voterids;
    }
   








}

⌨️ 快捷键说明

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