Question.java
上传用户:nbxinmin
上传日期:2021-10-09
资源大小:46k
文件大小:3k
源码类别:

Internet/IE编程

开发平台:

Java

  1. package com.xdf.exams.bean;
  2. import java.util.HashSet;
  3. import java.util.Set;
  4. /**
  5.  * Question generated by MyEclipse - Hibernate Tools
  6.  */
  7. public class Question  implements java.io.Serializable {
  8.     // Fields    
  9.      private Long questionid;
  10.      private Subject subject;
  11.      private String content;
  12.      private int score;
  13.      private int qtype;
  14.      private String rightanswer;
  15.      private String sdate;
  16.      private Set optionses = new HashSet(0);
  17.      private Set examrecords = new HashSet(0);
  18.     // Constructors
  19.     /** default constructor */
  20.     public Question() {
  21.     }
  22. /** minimal constructor */
  23.     public Question(Subject subject, String content, int score, String rightanswer, String sdate) {
  24.         this.subject = subject;
  25.         this.content = content;
  26.         this.score = score;
  27.         this.rightanswer = rightanswer;
  28.         this.sdate = sdate;
  29.     }
  30.     
  31.     /** full constructor */
  32.     public Question(Subject subject, String content, int score, String rightanswer, String sdate, Set optionses, Set examrecords) {
  33.         this.subject = subject;
  34.         this.content = content;
  35.         this.score = score;
  36.         this.rightanswer = rightanswer;
  37.         this.sdate = sdate;
  38.         this.optionses = optionses;
  39.         this.examrecords = examrecords;
  40.     }
  41.    
  42.     // Property accessors
  43.     public Long getQuestionid() {
  44.         return this.questionid;
  45.     }
  46.     
  47.     public void setQuestionid(Long questionid) {
  48.         this.questionid = questionid;
  49.     }
  50.     public Subject getSubject() {
  51.         return this.subject;
  52.     }
  53.     
  54.     public void setSubject(Subject subject) {
  55.         this.subject = subject;
  56.     }
  57.     public String getContent() {
  58.         return this.content;
  59.     }
  60.     
  61.     public void setContent(String content) {
  62.         this.content = content;
  63.     }
  64.     public int getScore() {
  65.         return this.score;
  66.     }
  67.     
  68.     public void setScore(int score) {
  69.         this.score = score;
  70.     }
  71.     public String getRightanswer() {
  72.         return this.rightanswer;
  73.     }
  74.     
  75.     public void setRightanswer(String rightanswer) {
  76.         this.rightanswer = rightanswer;
  77.     }
  78.     public String getSdate() {
  79.         return this.sdate;
  80.     }
  81.     
  82.     public void setSdate(String sdate) {
  83.         this.sdate = sdate;
  84.     }
  85.     public Set getOptionses() {
  86.         return this.optionses;
  87.     }
  88.     
  89.     public void setOptionses(Set optionses) {
  90.         this.optionses = optionses;
  91.     }
  92.     public Set getExamrecords() {
  93.         return this.examrecords;
  94.     }
  95.     
  96.     public void setExamrecords(Set examrecords) {
  97.         this.examrecords = examrecords;
  98.     }
  99. public int getQtype() {
  100. return qtype;
  101. }
  102. public void setQtype(int qtype) {
  103. this.qtype = qtype;
  104. }
  105.    
  106. }