330 lines
5.4 KiB
Plaintext
330 lines
5.4 KiB
Plaintext
package com.bonus.weixin.beans;
|
|
|
|
public class SelfTestBean {
|
|
private String examId ;//试卷id
|
|
|
|
private String id;
|
|
|
|
private String orgId;
|
|
|
|
private String examName;//试卷名称
|
|
|
|
private String material;//简答题名称
|
|
|
|
private String examCode;//试卷编码
|
|
|
|
private String examGrade;//试卷总分
|
|
|
|
private String startTime;//开始时间
|
|
|
|
private String endTime;//结束时间
|
|
|
|
private String passGrade;//及格分数
|
|
|
|
private String questionId;//题目id
|
|
|
|
private String content;//题干
|
|
|
|
private String operation;//选项
|
|
|
|
private String isActive;
|
|
|
|
private String answer;//答案
|
|
|
|
private String picUrl;//图片地址
|
|
|
|
private String questionGrade;//单个题目分数
|
|
|
|
private String classification;//题目类型单选、多选。。。
|
|
|
|
private String questionType;
|
|
|
|
private String username;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
* @return the questionType
|
|
*/
|
|
public String getQuestionType() {
|
|
return questionType;
|
|
}
|
|
|
|
/**
|
|
* @param questionType the questionType to set
|
|
*/
|
|
public void setQuestionType(String questionType) {
|
|
this.questionType = questionType;
|
|
}
|
|
|
|
/**
|
|
* @return the orgId
|
|
*/
|
|
public String getOrgId() {
|
|
return orgId;
|
|
}
|
|
|
|
/**
|
|
* @param orgId the orgId to set
|
|
*/
|
|
public void setOrgId(String orgId) {
|
|
this.orgId = orgId;
|
|
}
|
|
|
|
/**
|
|
* @return the username
|
|
*/
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
|
|
/**
|
|
* @param username the username to set
|
|
*/
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
|
|
/**
|
|
* @return the id
|
|
*/
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
/**
|
|
* @param id the id to set
|
|
*/
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
|
|
/**
|
|
* @return the material
|
|
*/
|
|
public String getMaterial() {
|
|
return material;
|
|
}
|
|
|
|
/**
|
|
* @param material the material to set
|
|
*/
|
|
public void setMaterial(String material) {
|
|
this.material = material;
|
|
}
|
|
|
|
/**
|
|
* @return the isActive
|
|
*/
|
|
public String getIsActive() {
|
|
return isActive;
|
|
}
|
|
|
|
/**
|
|
* @param isActive the isActive to set
|
|
*/
|
|
public void setIsActive(String isActive) {
|
|
this.isActive = isActive;
|
|
}
|
|
|
|
/**
|
|
* @return the operation
|
|
*/
|
|
public String getOperation() {
|
|
return operation;
|
|
}
|
|
|
|
/**
|
|
* @param operation the operation to set
|
|
*/
|
|
public void setOperation(String operation) {
|
|
this.operation = operation;
|
|
}
|
|
|
|
/**
|
|
* @return the examId
|
|
*/
|
|
public String getExamId() {
|
|
return examId;
|
|
}
|
|
|
|
/**
|
|
* @param examId the examId to set
|
|
*/
|
|
public void setExamId(String examId) {
|
|
this.examId = examId;
|
|
}
|
|
|
|
/**
|
|
* @return the examName
|
|
*/
|
|
public String getExamName() {
|
|
return examName;
|
|
}
|
|
|
|
/**
|
|
* @param examName the examName to set
|
|
*/
|
|
public void setExamName(String examName) {
|
|
this.examName = examName;
|
|
}
|
|
|
|
/**
|
|
* @return the examCode
|
|
*/
|
|
public String getExamCode() {
|
|
return examCode;
|
|
}
|
|
|
|
/**
|
|
* @param examCode the examCode to set
|
|
*/
|
|
public void setExamCode(String examCode) {
|
|
this.examCode = examCode;
|
|
}
|
|
|
|
/**
|
|
* @return the examGrade
|
|
*/
|
|
public String getExamGrade() {
|
|
return examGrade;
|
|
}
|
|
|
|
/**
|
|
* @param examGrade the examGrade to set
|
|
*/
|
|
public void setExamGrade(String examGrade) {
|
|
this.examGrade = examGrade;
|
|
}
|
|
|
|
/**
|
|
* @return the startTime
|
|
*/
|
|
public String getStartTime() {
|
|
return startTime;
|
|
}
|
|
|
|
/**
|
|
* @param startTime the startTime to set
|
|
*/
|
|
public void setStartTime(String startTime) {
|
|
this.startTime = startTime;
|
|
}
|
|
|
|
/**
|
|
* @return the endTime
|
|
*/
|
|
public String getEndTime() {
|
|
return endTime;
|
|
}
|
|
|
|
/**
|
|
* @param endTime the endTime to set
|
|
*/
|
|
public void setEndTime(String endTime) {
|
|
this.endTime = endTime;
|
|
}
|
|
|
|
/**
|
|
* @return the passGrade
|
|
*/
|
|
public String getPassGrade() {
|
|
return passGrade;
|
|
}
|
|
|
|
/**
|
|
* @param passGrade the passGrade to set
|
|
*/
|
|
public void setPassGrade(String passGrade) {
|
|
this.passGrade = passGrade;
|
|
}
|
|
|
|
/**
|
|
* @return the questionId
|
|
*/
|
|
public String getQuestionId() {
|
|
return questionId;
|
|
}
|
|
|
|
/**
|
|
* @param questionId the questionId to set
|
|
*/
|
|
public void setQuestionId(String questionId) {
|
|
this.questionId = questionId;
|
|
}
|
|
|
|
/**
|
|
* @return the content
|
|
*/
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
|
|
/**
|
|
* @param content the content to set
|
|
*/
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
/**
|
|
* @return the answer
|
|
*/
|
|
public String getAnswer() {
|
|
return answer;
|
|
}
|
|
|
|
/**
|
|
* @param answer the answer to set
|
|
*/
|
|
public void setAnswer(String answer) {
|
|
this.answer = answer;
|
|
}
|
|
|
|
/**
|
|
* @return the picUrl
|
|
*/
|
|
public String getPicUrl() {
|
|
return picUrl;
|
|
}
|
|
|
|
/**
|
|
* @param picUrl the picUrl to set
|
|
*/
|
|
public void setPicUrl(String picUrl) {
|
|
this.picUrl = picUrl;
|
|
}
|
|
|
|
/**
|
|
* @return the questionGrade
|
|
*/
|
|
public String getQuestionGrade() {
|
|
return questionGrade;
|
|
}
|
|
|
|
/**
|
|
* @param questionGrade the questionGrade to set
|
|
*/
|
|
public void setQuestionGrade(String questionGrade) {
|
|
this.questionGrade = questionGrade;
|
|
}
|
|
|
|
/**
|
|
* @return the classification
|
|
*/
|
|
public String getClassification() {
|
|
return classification;
|
|
}
|
|
|
|
/**
|
|
* @param classification the classification to set
|
|
*/
|
|
public void setClassification(String classification) {
|
|
this.classification = classification;
|
|
}
|
|
|
|
|
|
|
|
} |