📄 assessvo.java
字号:
package edu.yinhe.mis.vo;
/**
*
* @author 陈雄
*
*/
public class AssessVO {
/**
* 科目名称
*/
private String object_name="";
/**
* 考场编号
*/
private Integer check_id;
/**
* 考生姓名
*/
private String name;
/**
* 考生编号
*/
private Integer exam_no;
/**
* 查询结果的条数
*/
private Integer count;
/**
* 试题的编号
*/
private Integer testpaperquestion_id;
/**
* 试题的内容
*/
private String content;
/**
* 考生答案
*/
private String student_key;
/**
* 标准答案
*/
private String standard_key;
/**
* 该题最大分
*/
private String score;
/**
* 客观题总分
*/
private String follow_score;
/**
* 主观题总分
*/
private String main_score;
public String getMain_score() {
return main_score;
}
public void setMain_score(String main_score) {
this.main_score = main_score;
}
public Integer getCheck_id() {
return check_id;
}
public void setCheck_id(Integer check_id) {
this.check_id = check_id;
}
public String getObject_name() {
return object_name;
}
public void setObject_name(String object_name) {
this.object_name = object_name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getExam_no() {
return exam_no;
}
public void setExam_no(Integer exam_no) {
this.exam_no = exam_no;
}
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
public Integer getTestpaperquestion_id() {
return testpaperquestion_id;
}
public void setTestpaperquestion_id(Integer testpaperquestion_id) {
this.testpaperquestion_id = testpaperquestion_id;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getStudent_key() {
return student_key;
}
public void setStudent_key(String student_key) {
this.student_key = student_key;
}
public String getStandard_key() {
return standard_key;
}
public void setStandard_key(String standard_key) {
this.standard_key = standard_key;
}
public String getScore() {
return score;
}
public void setScore(String score) {
this.score = score;
}
public String getFollow_score() {
return follow_score;
}
public void setFollow_score(String follow_score) {
this.follow_score = follow_score;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -