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

Internet/IE编程

开发平台:

Java

  1. package com.xdf.exams.bean;
  2. /**
  3.  * Options generated by MyEclipse - Hibernate Tools
  4.  */
  5. public class Options  implements java.io.Serializable {
  6.     // Fields    
  7.      private Long optionid;
  8.      private Question question;
  9.      private String content;
  10.     // Constructors
  11.     /** default constructor */
  12.     public Options() {
  13.     }
  14.     
  15.     /** full constructor */
  16.     public Options(Question question, String content) {
  17.         this.question = question;
  18.         this.content = content;
  19.     }
  20.    
  21.     // Property accessors
  22.     public Long getOptionid() {
  23.         return this.optionid;
  24.     }
  25.     
  26.     public void setOptionid(Long optionid) {
  27.         this.optionid = optionid;
  28.     }
  29.     public Question getQuestion() {
  30.         return this.question;
  31.     }
  32.     
  33.     public void setQuestion(Question question) {
  34.         this.question = question;
  35.     }
  36.     public String getContent() {
  37.         return this.content;
  38.     }
  39.     
  40.     public void setContent(String content) {
  41.         this.content = content;
  42.     }
  43.    
  44. }