Subject.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.  * Subject generated by MyEclipse - Hibernate Tools
  6.  */
  7. public class Subject  implements java.io.Serializable {
  8.     // Fields    
  9.      private Long subjectid;
  10.      private String name;
  11.      private Long time;
  12.      private int state;
  13.      private String intro;
  14.      private String sdate;
  15.      private Set results = new HashSet(0);
  16.      private Set questions = new HashSet(0);
  17.      private Integer totalnum = 0;
  18.      private Integer totalscore = 0;
  19.     // Constructors
  20.     public Integer getTotalnum() {
  21. return totalnum;
  22. }
  23. public void setTotalnum(Integer totalnum) {
  24. this.totalnum = totalnum;
  25. }
  26. public Integer getTotalscore() {
  27. return totalscore;
  28. }
  29. public void setTotalscore(Integer totalscore) {
  30. this.totalscore = totalscore;
  31. }
  32. /** default constructor */
  33.     public Subject() {
  34.     }
  35. /** minimal constructor */
  36.     public Subject(String name, Long time, int state, String intro, String sdate) {
  37.         this.name = name;
  38.         this.time = time;
  39.         this.state = state;
  40.         this.intro = intro;
  41.         this.sdate = sdate;
  42.     }
  43.     
  44.     /** full constructor */
  45.     public Subject(String name, Long time, int state, String intro, String sdate, Set results, Set questions) {
  46.         this.name = name;
  47.         this.time = time;
  48.         this.state = state;
  49.         this.intro = intro;
  50.         this.sdate = sdate;
  51.         this.results = results;
  52.         this.questions = questions;
  53.     }
  54.    
  55.     // Property accessors
  56.     public Long getSubjectid() {
  57.         return this.subjectid;
  58.     }
  59.     
  60.     public void setSubjectid(Long subjectid) {
  61.         this.subjectid = subjectid;
  62.     }
  63.     public String getName() {
  64.         return this.name;
  65.     }
  66.     
  67.     public void setName(String name) {
  68.         this.name = name;
  69.     }
  70.     public Long getTime() {
  71.         return this.time;
  72.     }
  73.     
  74.     public void setTime(Long time) {
  75.         this.time = time;
  76.     }
  77.     public int getState() {
  78.         return this.state;
  79.     }
  80.     
  81.     public void setState(int state) {
  82.         this.state = state;
  83.     }
  84.     public String getIntro() {
  85.         return this.intro;
  86.     }
  87.     
  88.     public void setIntro(String intro) {
  89.         this.intro = intro;
  90.     }
  91.     public String getSdate() {
  92.         return this.sdate;
  93.     }
  94.     
  95.     public void setSdate(String sdate) {
  96.         this.sdate = sdate;
  97.     }
  98.     public Set getResults() {
  99.         return this.results;
  100.     }
  101.     
  102.     public void setResults(Set results) {
  103.         this.results = results;
  104.     }
  105.     public Set getQuestions() {
  106.         return this.questions;
  107.     }
  108.     
  109.     public void setQuestions(Set questions) {
  110.         this.questions = questions;
  111.     }
  112.    
  113. }