package com.mindskip.xzs.domain; import java.io.Serializable; import java.util.Date; /** * @version 2.2.0 * @description: 答卷 * Copyright (C), 2020-2021, 武汉思维跳跃科技有限公司 * @date 2021 /9/7 9:45 */ public class ExamPaperAnswer implements Serializable { private static final long serialVersionUID = -2143539181805283910L; private Integer id; /** * 试卷id */ private Integer examPaperId; /** * 试卷名称 */ private String paperName; /** * 试卷类型 */ private Integer paperType; /** * 学科 */ private Integer subjectId; /** * 自动批改分数 */ private Integer systemScore; /** * 用户分数 */ private Integer userScore; /** * 试卷分数 */ private Integer paperScore; /** * 题目正确数 */ private Integer questionCorrect; /** * 题目数 */ private Integer questionCount; /** * 耗时 */ private Integer doTime; /** * 答卷状态 */ private Integer status; /** * 创建人 */ private Integer createUser; /** * 创建时间 */ private Date createTime; /** * 任务 */ private Integer taskExamId; /** * 批改人 */ private Integer judgeUser; /** * Gets id. * * @return the id */ public Integer getId() { return id; } /** * Sets id. * * @param id the id */ public void setId(Integer id) { this.id = id; } /** * Gets exam paper id. * * @return the exam paper id */ public Integer getExamPaperId() { return examPaperId; } /** * Sets exam paper id. * * @param examPaperId the exam paper id */ public void setExamPaperId(Integer examPaperId) { this.examPaperId = examPaperId; } /** * Gets paper name. * * @return the paper name */ public String getPaperName() { return paperName; } /** * Sets paper name. * * @param paperName the paper name */ public void setPaperName(String paperName) { this.paperName = paperName == null ? null : paperName.trim(); } /** * Gets paper type. * * @return the paper type */ public Integer getPaperType() { return paperType; } /** * Sets paper type. * * @param paperType the paper type */ public void setPaperType(Integer paperType) { this.paperType = paperType; } /** * Gets subject id. * * @return the subject id */ public Integer getSubjectId() { return subjectId; } /** * Sets subject id. * * @param subjectId the subject id */ public void setSubjectId(Integer subjectId) { this.subjectId = subjectId; } /** * Gets system score. * * @return the system score */ public Integer getSystemScore() { return systemScore; } /** * Sets system score. * * @param systemScore the system score */ public void setSystemScore(Integer systemScore) { this.systemScore = systemScore; } /** * Gets user score. * * @return the user score */ public Integer getUserScore() { return userScore; } /** * Sets user score. * * @param userScore the user score */ public void setUserScore(Integer userScore) { this.userScore = userScore; } /** * Gets paper score. * * @return the paper score */ public Integer getPaperScore() { return paperScore; } /** * Sets paper score. * * @param paperScore the paper score */ public void setPaperScore(Integer paperScore) { this.paperScore = paperScore; } /** * Gets question correct. * * @return the question correct */ public Integer getQuestionCorrect() { return questionCorrect; } /** * Sets question correct. * * @param questionCorrect the question correct */ public void setQuestionCorrect(Integer questionCorrect) { this.questionCorrect = questionCorrect; } /** * Gets question count. * * @return the question count */ public Integer getQuestionCount() { return questionCount; } /** * Sets question count. * * @param questionCount the question count */ public void setQuestionCount(Integer questionCount) { this.questionCount = questionCount; } /** * Gets do time. * * @return the do time */ public Integer getDoTime() { return doTime; } /** * Sets do time. * * @param doTime the do time */ public void setDoTime(Integer doTime) { this.doTime = doTime; } /** * Gets status. * * @return the status */ public Integer getStatus() { return status; } /** * Sets status. * * @param status the status */ public void setStatus(Integer status) { this.status = status; } /** * Gets create user. * * @return the create user */ public Integer getCreateUser() { return createUser; } /** * Sets create user. * * @param createUser the create user */ public void setCreateUser(Integer createUser) { this.createUser = createUser; } /** * Gets create time. * * @return the create time */ public Date getCreateTime() { return createTime; } /** * Sets create time. * * @param createTime the create time */ public void setCreateTime(Date createTime) { this.createTime = createTime; } /** * Gets task exam id. * * @return the task exam id */ public Integer getTaskExamId() { return taskExamId; } /** * Sets task exam id. * * @param taskExamId the task exam id */ public void setTaskExamId(Integer taskExamId) { this.taskExamId = taskExamId; } /** * Gets judge user. * * @return the judge user */ public Integer getJudgeUser() { return judgeUser; } /** * Sets judge user. * * @param judgeUser the judge user */ public void setJudgeUser(Integer judgeUser) { this.judgeUser = judgeUser; } }