|
@@ -1,9 +1,6 @@
|
|
package com.qmth.teachcloud.mark.entity;
|
|
package com.qmth.teachcloud.mark.entity;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
-
|
|
|
|
-import java.io.Serializable;
|
|
|
|
-
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
import com.qmth.teachcloud.common.enums.mark.MarkMode;
|
|
import com.qmth.teachcloud.common.enums.mark.MarkMode;
|
|
@@ -11,6 +8,8 @@ import com.qmth.teachcloud.common.enums.mark.MarkPaperStatus;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
|
|
+import java.io.Serializable;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* <p>
|
|
* <p>
|
|
* 考试科目表
|
|
* 考试科目表
|
|
@@ -20,7 +19,7 @@ import io.swagger.annotations.ApiModelProperty;
|
|
* @since 2023-09-22
|
|
* @since 2023-09-22
|
|
*/
|
|
*/
|
|
@TableName("mark_paper")
|
|
@TableName("mark_paper")
|
|
-@ApiModel(value="MarkPaper对象", description="考试科目表")
|
|
|
|
|
|
+@ApiModel(value = "MarkPaper对象", description = "考试科目表")
|
|
public class MarkPaper implements Serializable {
|
|
public class MarkPaper implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
private static final long serialVersionUID = 1L;
|
|
@@ -37,13 +36,13 @@ public class MarkPaper implements Serializable {
|
|
|
|
|
|
@ApiModelProperty(value = "试卷编号(显示)")
|
|
@ApiModelProperty(value = "试卷编号(显示)")
|
|
private String paperNumber;
|
|
private String paperNumber;
|
|
-
|
|
|
|
|
|
+
|
|
@ApiModelProperty(value = "试卷编号(交互)")
|
|
@ApiModelProperty(value = "试卷编号(交互)")
|
|
private String coursePaperId;
|
|
private String coursePaperId;
|
|
|
|
|
|
@ApiModelProperty(value = "签到表编号")
|
|
@ApiModelProperty(value = "签到表编号")
|
|
private String packageCode;
|
|
private String packageCode;
|
|
-
|
|
|
|
|
|
+
|
|
@ApiModelProperty(value = "客观题满分")
|
|
@ApiModelProperty(value = "客观题满分")
|
|
private Double objectiveScore;
|
|
private Double objectiveScore;
|
|
|
|
|
|
@@ -116,22 +115,23 @@ public class MarkPaper implements Serializable {
|
|
public MarkPaper() {
|
|
public MarkPaper() {
|
|
}
|
|
}
|
|
|
|
|
|
- public MarkPaper(Long examId, String courseCode, String courseName, String paperNumber, String packageCode, Long userId, String paperType) {
|
|
|
|
|
|
+ public MarkPaper(Long examId, String courseCode, String courseName, String paperNumber, String coursePaperId, String packageCode, Long userId, String paperType) {
|
|
this.examId = examId;
|
|
this.examId = examId;
|
|
this.courseCode = courseCode;
|
|
this.courseCode = courseCode;
|
|
this.courseName = courseName;
|
|
this.courseName = courseName;
|
|
this.paperNumber = paperNumber;
|
|
this.paperNumber = paperNumber;
|
|
|
|
+ this.coursePaperId = coursePaperId;
|
|
this.packageCode = packageCode;
|
|
this.packageCode = packageCode;
|
|
this.userId = userId;
|
|
this.userId = userId;
|
|
this.paperType = paperType;
|
|
this.paperType = paperType;
|
|
this.markMode = MarkMode.TRACK;
|
|
this.markMode = MarkMode.TRACK;
|
|
this.objectiveScore = 0D;
|
|
this.objectiveScore = 0D;
|
|
this.subjectiveScore = 0D;
|
|
this.subjectiveScore = 0D;
|
|
- this.totalScore =0D;
|
|
|
|
|
|
+ this.totalScore = 0D;
|
|
this.studentCount = 0;
|
|
this.studentCount = 0;
|
|
this.uploadCount = 0;
|
|
this.uploadCount = 0;
|
|
this.absentCount = 0;
|
|
this.absentCount = 0;
|
|
- this.groupStatus =false;
|
|
|
|
|
|
+ this.groupStatus = false;
|
|
this.openMarkClass = false;
|
|
this.openMarkClass = false;
|
|
this.status = MarkPaperStatus.FORMAL;
|
|
this.status = MarkPaperStatus.FORMAL;
|
|
}
|
|
}
|
|
@@ -143,6 +143,7 @@ public class MarkPaper implements Serializable {
|
|
public void setExamId(Long examId) {
|
|
public void setExamId(Long examId) {
|
|
this.examId = examId;
|
|
this.examId = examId;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getCourseCode() {
|
|
public String getCourseCode() {
|
|
return courseCode;
|
|
return courseCode;
|
|
}
|
|
}
|
|
@@ -150,6 +151,7 @@ public class MarkPaper implements Serializable {
|
|
public void setCourseCode(String courseCode) {
|
|
public void setCourseCode(String courseCode) {
|
|
this.courseCode = courseCode;
|
|
this.courseCode = courseCode;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getCourseName() {
|
|
public String getCourseName() {
|
|
return courseName;
|
|
return courseName;
|
|
}
|
|
}
|
|
@@ -157,6 +159,7 @@ public class MarkPaper implements Serializable {
|
|
public void setCourseName(String courseName) {
|
|
public void setCourseName(String courseName) {
|
|
this.courseName = courseName;
|
|
this.courseName = courseName;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getPaperNumber() {
|
|
public String getPaperNumber() {
|
|
return paperNumber;
|
|
return paperNumber;
|
|
}
|
|
}
|
|
@@ -188,6 +191,7 @@ public class MarkPaper implements Serializable {
|
|
public void setObjectiveScore(Double objectiveScore) {
|
|
public void setObjectiveScore(Double objectiveScore) {
|
|
this.objectiveScore = objectiveScore;
|
|
this.objectiveScore = objectiveScore;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Double getSubjectiveScore() {
|
|
public Double getSubjectiveScore() {
|
|
return subjectiveScore;
|
|
return subjectiveScore;
|
|
}
|
|
}
|
|
@@ -195,6 +199,7 @@ public class MarkPaper implements Serializable {
|
|
public void setSubjectiveScore(Double subjectiveScore) {
|
|
public void setSubjectiveScore(Double subjectiveScore) {
|
|
this.subjectiveScore = subjectiveScore;
|
|
this.subjectiveScore = subjectiveScore;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Double getTotalScore() {
|
|
public Double getTotalScore() {
|
|
return totalScore;
|
|
return totalScore;
|
|
}
|
|
}
|
|
@@ -234,6 +239,7 @@ public class MarkPaper implements Serializable {
|
|
public void setRemark(String remark) {
|
|
public void setRemark(String remark) {
|
|
this.remark = remark;
|
|
this.remark = remark;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getSheetConfig() {
|
|
public String getSheetConfig() {
|
|
return sheetConfig;
|
|
return sheetConfig;
|
|
}
|
|
}
|
|
@@ -241,6 +247,7 @@ public class MarkPaper implements Serializable {
|
|
public void setSheetConfig(String sheetConfig) {
|
|
public void setSheetConfig(String sheetConfig) {
|
|
this.sheetConfig = sheetConfig;
|
|
this.sheetConfig = sheetConfig;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Double getPassScore() {
|
|
public Double getPassScore() {
|
|
return passScore;
|
|
return passScore;
|
|
}
|
|
}
|
|
@@ -248,6 +255,7 @@ public class MarkPaper implements Serializable {
|
|
public void setPassScore(Double passScore) {
|
|
public void setPassScore(Double passScore) {
|
|
this.passScore = passScore;
|
|
this.passScore = passScore;
|
|
}
|
|
}
|
|
|
|
+
|
|
public Double getExcellentScore() {
|
|
public Double getExcellentScore() {
|
|
return excellentScore;
|
|
return excellentScore;
|
|
}
|
|
}
|
|
@@ -255,6 +263,7 @@ public class MarkPaper implements Serializable {
|
|
public void setExcellentScore(Double excellentScore) {
|
|
public void setExcellentScore(Double excellentScore) {
|
|
this.excellentScore = excellentScore;
|
|
this.excellentScore = excellentScore;
|
|
}
|
|
}
|
|
|
|
+
|
|
public String getCardType() {
|
|
public String getCardType() {
|
|
return cardType;
|
|
return cardType;
|
|
}
|
|
}
|
|
@@ -370,32 +379,32 @@ public class MarkPaper implements Serializable {
|
|
@Override
|
|
@Override
|
|
public String toString() {
|
|
public String toString() {
|
|
return "MarkPaper{" +
|
|
return "MarkPaper{" +
|
|
- "examId=" + examId +
|
|
|
|
- ", courseCode=" + courseCode +
|
|
|
|
- ", courseName=" + courseName +
|
|
|
|
- ", paperNumber=" + paperNumber +
|
|
|
|
- ", objectiveScore=" + objectiveScore +
|
|
|
|
- ", subjectiveScore=" + subjectiveScore +
|
|
|
|
- ", totalScore=" + totalScore +
|
|
|
|
- ", studentCount=" + studentCount +
|
|
|
|
- ", uploadCount=" + uploadCount +
|
|
|
|
- ", absentCount=" + absentCount +
|
|
|
|
- ", remark=" + remark +
|
|
|
|
- ", sheetConfig=" + sheetConfig +
|
|
|
|
- ", passScore=" + passScore +
|
|
|
|
- ", excellentScore=" + excellentScore +
|
|
|
|
- ", cardType=" + cardType +
|
|
|
|
- ", paperFilePath=" + paperFilePath +
|
|
|
|
- ", answerFilePath=" + answerFilePath +
|
|
|
|
- ", autoScroll=" + autoScroll +
|
|
|
|
- ", markMode=" + markMode +
|
|
|
|
- ", markStartTime=" + markStartTime +
|
|
|
|
- ", markEndTime=" + markEndTime +
|
|
|
|
- ", sheetView=" + sheetView +
|
|
|
|
- ", showObjectScore=" + showObjectScore +
|
|
|
|
- ", groupStatus=" + groupStatus +
|
|
|
|
- ", openMarkClass=" + openMarkClass +
|
|
|
|
- ", status=" + status +
|
|
|
|
- "}";
|
|
|
|
|
|
+ "examId=" + examId +
|
|
|
|
+ ", courseCode=" + courseCode +
|
|
|
|
+ ", courseName=" + courseName +
|
|
|
|
+ ", paperNumber=" + paperNumber +
|
|
|
|
+ ", objectiveScore=" + objectiveScore +
|
|
|
|
+ ", subjectiveScore=" + subjectiveScore +
|
|
|
|
+ ", totalScore=" + totalScore +
|
|
|
|
+ ", studentCount=" + studentCount +
|
|
|
|
+ ", uploadCount=" + uploadCount +
|
|
|
|
+ ", absentCount=" + absentCount +
|
|
|
|
+ ", remark=" + remark +
|
|
|
|
+ ", sheetConfig=" + sheetConfig +
|
|
|
|
+ ", passScore=" + passScore +
|
|
|
|
+ ", excellentScore=" + excellentScore +
|
|
|
|
+ ", cardType=" + cardType +
|
|
|
|
+ ", paperFilePath=" + paperFilePath +
|
|
|
|
+ ", answerFilePath=" + answerFilePath +
|
|
|
|
+ ", autoScroll=" + autoScroll +
|
|
|
|
+ ", markMode=" + markMode +
|
|
|
|
+ ", markStartTime=" + markStartTime +
|
|
|
|
+ ", markEndTime=" + markEndTime +
|
|
|
|
+ ", sheetView=" + sheetView +
|
|
|
|
+ ", showObjectScore=" + showObjectScore +
|
|
|
|
+ ", groupStatus=" + groupStatus +
|
|
|
|
+ ", openMarkClass=" + openMarkClass +
|
|
|
|
+ ", status=" + status +
|
|
|
|
+ "}";
|
|
}
|
|
}
|
|
}
|
|
}
|