📄 examtype.java
字号:
package org.yeeku.model;
import java.util.*;
import java.io.Serializable;
public class ExamType implements Serializable
{
private int id;
private String examName;
private String examTime;
private Set<Question> questions = new HashSet<Question>();
public ExamType()
{
}
public ExamType(String examName,String examTime)
{
this.examName = examName;
this.examTime = examTime;
}
public void setId(int id)
{
this.id = id;
}
public void setExamName(String examName)
{
this.examName = examName;
}
public void setExamTime(String examTime)
{
this.examTime = examTime;
}
public void setQuestions(Set<Question> questions)
{
this.questions = questions;
}
public int getId()
{
return this.id;
}
public String getExamTime()
{
return this.examTime;
}
public String getExamName()
{
return this.examName;
}
public Set<Question> getQuestions()
{
return this.questions;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -