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

Internet/IE编程

开发平台:

Java

  1. package com.xdf.exams.bean;
  2. import java.util.Date;
  3. import java.util.HashSet;
  4. import java.util.Set;
  5. /**
  6.  * Result generated by MyEclipse - Hibernate Tools
  7.  */
  8. public class Result  implements java.io.Serializable {
  9.     // Fields    
  10.      private Long resultid;
  11.      private Student student;
  12.      private Subject subject;
  13.      private int score;
  14.      private Date starttime;
  15.      private Date endtime;
  16.      private Set examrecords = new HashSet(0);
  17.     // Constructors
  18.     /** default constructor */
  19.     public Result() {
  20.     }
  21. /** minimal constructor */
  22.     public Result(Student student, Subject subject, int score, Date starttime, Date endtime) {
  23.         this.student = student;
  24.         this.subject = subject;
  25.         this.score = score;
  26.         this.starttime = starttime;
  27.         this.endtime = endtime;
  28.     }
  29.     
  30.     /** full constructor */
  31.     public Result(Student student, Subject subject, int score, Date starttime, Date endtime, Set examrecords) {
  32.         this.student = student;
  33.         this.subject = subject;
  34.         this.score = score;
  35.         this.starttime = starttime;
  36.         this.endtime = endtime;
  37.         this.examrecords = examrecords;
  38.     }
  39.    
  40.     // Property accessors
  41.     public Long getResultid() {
  42.         return this.resultid;
  43.     }
  44.     
  45.     public void setResultid(Long resultid) {
  46.         this.resultid = resultid;
  47.     }
  48.     public Student getStudent() {
  49.         return this.student;
  50.     }
  51.     
  52.     public void setStudent(Student student) {
  53.         this.student = student;
  54.     }
  55.     public Subject getSubject() {
  56.         return this.subject;
  57.     }
  58.     
  59.     public void setSubject(Subject subject) {
  60.         this.subject = subject;
  61.     }
  62.     public int getScore() {
  63.         return this.score;
  64.     }
  65.     
  66.     public void setScore(int score) {
  67.         this.score = score;
  68.     }
  69.     public Date getStarttime() {
  70.         return this.starttime;
  71.     }
  72.     
  73.     public void setStarttime(Date starttime) {
  74.         this.starttime = starttime;
  75.     }
  76.     public Date getEndtime() {
  77.         return this.endtime;
  78.     }
  79.     
  80.     public void setEndtime(Date endtime) {
  81.         this.endtime = endtime;
  82.     }
  83.     public Set getExamrecords() {
  84.         return this.examrecords;
  85.     }
  86.     
  87.     public void setExamrecords(Set examrecords) {
  88.         this.examrecords = examrecords;
  89.     }
  90.    
  91. }