Options.java
资源名称:exams.rar [点击查看]
上传用户:nbxinmin
上传日期:2021-10-09
资源大小:46k
文件大小:1k
源码类别:
Internet/IE编程
开发平台:
Java
- package com.xdf.exams.bean;
- /**
- * Options generated by MyEclipse - Hibernate Tools
- */
- public class Options implements java.io.Serializable {
- // Fields
- private Long optionid;
- private Question question;
- private String content;
- // Constructors
- /** default constructor */
- public Options() {
- }
- /** full constructor */
- public Options(Question question, String content) {
- this.question = question;
- this.content = content;
- }
- // Property accessors
- public Long getOptionid() {
- return this.optionid;
- }
- public void setOptionid(Long optionid) {
- this.optionid = optionid;
- }
- public Question getQuestion() {
- return this.question;
- }
- public void setQuestion(Question question) {
- this.question = question;
- }
- public String getContent() {
- return this.content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- }