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

📄 paperquestionship.java

📁 jsf在线考试系统的实例
💻 JAVA
字号:
package com.jlobo.web.beans;

public class PaperQuestionShip  implements java.io.Serializable {
    // Fields    
     private Long id;
     private Paper paper;
     private Question question;
     private String code;
     private Double score;
    // Constructors

    /** default constructor */
    public PaperQuestionShip() {
    }

    
    /** full constructor */
    public PaperQuestionShip(Paper paper, Question question, String code,Double score) {
        this.paper = paper;
        this.question = question;
        this.code = code;
        this.score = score;
    }

   
    // Property accessors

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

    public Paper getPaper() {
        return this.paper;
    }
    
    public void setPaper(Paper paper) {
        this.paper = paper;
    }

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

    public Double getScore() {
        return this.score;
    }
    
    public void setScore(Double score) {
        this.score = score;
    }


	public String getCode() {
		return code;
	}


	public void setCode(String code) {
		this.code = code;
	}
   








}

⌨️ 快捷键说明

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