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

📄 examinationpapership.java

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



/**
 * ExaminationPaperShip generated by MyEclipse Persistence Tools
 */

public class ExaminationPaperShip  implements java.io.Serializable {


    // Fields    

     private Long id;
     private Examination examination;
     private Paper paper;
     private String code;


    // Constructors

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

    
    /** full constructor */
    public ExaminationPaperShip(Examination examination, Paper paper,String code) {
        this.examination = examination;
        this.paper = paper;
        this.code = code;
    }

   
    // Property accessors

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

    public Examination getExamination() {
        return this.examination;
    }
    
    public void setExamination(Examination examination) {
        this.examination = examination;
    }

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


	public String getCode() {
		return code;
	}


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

⌨️ 快捷键说明

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