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

📄 paper.java

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

import java.util.ArrayList;
import java.util.Date;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import com.jlobo.identity.User;


/**
 * Paper generated by MyEclipse Persistence Tools
 */

public class Paper  implements java.io.Serializable {
    // Fields    

     private Long id;
     private String name;
     private String subject;
     private Double score;
     private String difficult;
     private Date begin;
     private User user;
     private String describe;
     private String remark;
     private Long sort;
     private Long status;
     private List questions;

    // Constructors

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

    
    /** full constructor */
    public Paper(String name, String subject,Double score, String difficult, Date begin, User user, String describe, String remark, Long sort, Long status, List questions) {
        this.name = name;
        this.subject = subject;
        this.score = score;
        this.difficult = difficult;
        this.begin = begin;
        this.user = user;
        this.describe = describe;
        this.remark = remark;
        this.sort = sort;
        this.status = status;
        this.questions = questions;
    }

   
    // Property accessors

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

    public String getName() {
        return this.name;
    }
    
    public void setName(String name) {
        this.name = name;
    }

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

    public String getDifficult() {
        return this.difficult;
    }
    
    public void setDifficult(String difficult) {
        this.difficult = difficult;
    }

    public Date getBegin() {
        return this.begin;
    }
    
    public void setBegin(Date begin) {
        this.begin = begin;
    }

    public User getUser() {
        return this.user;
    }
    
    public void setUser(User user) {
        this.user = user;
    }

    public String getDescribe() {
        return this.describe;
    }
    
    public void setDescribe(String describe) {
        this.describe = describe;
    }

    public String getRemark() {
        return this.remark;
    }
    
    public void setRemark(String remark) {
        this.remark = remark;
    }

    public Long getSort() {
        return this.sort;
    }
    
    public void setSort(Long sort) {
        this.sort = sort;
    }

    public Long getStatus() {
        return this.status;
    }
    
    public void setStatus(Long status) {
        this.status = status;
    }

    public List getQuestions() {
        return this.questions;
    }
    
    public void setQuestions(List questions) {
        this.questions = questions;
    }


	public String getSubject() {
		return subject;
	}


	public void setSubject(String subject) {
		this.subject = subject;
	}

}

⌨️ 快捷键说明

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