Student.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.  * Student generated by MyEclipse - Hibernate Tools
  6.  */
  7. public class Student  implements java.io.Serializable {
  8.     // Fields    
  9.      private Long studentid;
  10.      private String username;
  11.      private String name;
  12.      private String password;
  13.      private String address;
  14.      private String sex;
  15.      private String email;
  16.      private Set results = new HashSet(0);
  17.     // Constructors
  18.     /** default constructor */
  19.     public Student() {
  20.     }
  21. /** minimal constructor */
  22.     public Student(String username, String name, String password, String address, String sex, String email) {
  23.         this.username = username;
  24.         this.name = name;
  25.         this.password = password;
  26.         this.address = address;
  27.         this.sex = sex;
  28.         this.email = email;
  29.     }
  30.     
  31.     /** full constructor */
  32.     public Student(String username, String name, String password, String address, String sex, String email, Set results) {
  33.         this.username = username;
  34.         this.name = name;
  35.         this.password = password;
  36.         this.address = address;
  37.         this.sex = sex;
  38.         this.email = email;
  39.         this.results = results;
  40.     }
  41.    
  42.     // Property accessors
  43.     public Long getStudentid() {
  44.         return this.studentid;
  45.     }
  46.     
  47.     public void setStudentid(Long studentid) {
  48.         this.studentid = studentid;
  49.     }
  50.     public String getUsername() {
  51.         return this.username;
  52.     }
  53.     
  54.     public void setUsername(String username) {
  55.         this.username = username;
  56.     }
  57.     public String getName() {
  58.         return this.name;
  59.     }
  60.     
  61.     public void setName(String name) {
  62.         this.name = name;
  63.     }
  64.     public String getPassword() {
  65.         return this.password;
  66.     }
  67.     
  68.     public void setPassword(String password) {
  69.         this.password = password;
  70.     }
  71.     public String getAddress() {
  72.         return this.address;
  73.     }
  74.     
  75.     public void setAddress(String address) {
  76.         this.address = address;
  77.     }
  78.     public String getSex() {
  79.         return this.sex;
  80.     }
  81.     
  82.     public void setSex(String sex) {
  83.         this.sex = sex;
  84.     }
  85.     public String getEmail() {
  86.         return this.email;
  87.     }
  88.     
  89.     public void setEmail(String email) {
  90.         this.email = email;
  91.     }
  92.     public Set getResults() {
  93.         return this.results;
  94.     }
  95.     
  96.     public void setResults(Set results) {
  97.         this.results = results;
  98.     }
  99.    
  100. }