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

📄 examination.java

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

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

import com.jlobo.identity.User;


/**
 * Examination generated by MyEclipse Persistence Tools
 */

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

     private Long id;
     private String name;
     private String type;
     private Date begin;
     private Date end;
     private String describe;
     private String remark;
     private Long sort;
     private Long status;
     private User user;
     private Date build;
     private Department department;
     private List papers = new ArrayList();

    // Constructors

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

    
    /** full constructor */
    public Examination(String name, String type, Date begin, Date end, String describe, String remark, Long sort, Long status, Department department, List papers,User user,Date build) {
        this.name = name;
        this.type = type;
        this.begin = begin;
        this.end = end;
        this.describe = describe;
        this.remark = remark;
        this.sort = sort;
        this.status = status;
        this.department = department;
        this.papers = papers;
        this.user = user;
        this.build = build;
    }
   
    // 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 String getType() {
        return this.type;
    }
    
    public void setType(String type) {
        this.type = type;
    }

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

    public Date getEnd() {
        return this.end;
    }
    
    public void setEnd(Date end) {
        this.end = end;
    }

    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 User getUser() {
		return user;
	}


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


	public Date getBuild() {
		return build;
	}


	public void setBuild(Date build) {
		this.build = build;
	}


	public Department getDepartment() {
		return department;
	}


	public void setDepartment(Department department) {
		this.department = department;
	}


	public List getPapers() {
		return papers;
	}


	public void setPapers(List papers) {
		this.papers = papers;
	}
}

⌨️ 快捷键说明

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