itempool.java

来自「论坛软件系统亦称电子公告板(BBS)系统」· Java 代码 · 共 58 行

JAVA
58
字号
package cn.jsprun.domain;

public class Itempool  implements java.io.Serializable {
	private static final long serialVersionUID = 6855078310342253804L;
	private Short id;
     private Byte type;
     private String question;
     private String answer;

    public Itempool() {
    }
    public Itempool(Byte type, String question, String answer) {
        this.type = type;
        this.question = question;
        this.answer = answer;
    }

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

    public Byte getType() {
        return this.type;
    }
    
    public void setType(Byte type) {
        this.type = type;
    }

    public String getQuestion() {
        return this.question;
    }
    
    public void setQuestion(String question) {
        this.question = question;
    }

    public String getAnswer() {
        return this.answer;
    }
    
    public void setAnswer(String answer) {
        this.answer = answer;
    }
   








}

⌨️ 快捷键说明

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