|
@@ -498,6 +498,47 @@ public class ExamRecordData implements JsonSerializable {
|
|
public void setIsAllObjectivePaper(Boolean isAllObjectivePaper) {
|
|
public void setIsAllObjectivePaper(Boolean isAllObjectivePaper) {
|
|
this.isAllObjectivePaper = isAllObjectivePaper;
|
|
this.isAllObjectivePaper = isAllObjectivePaper;
|
|
}
|
|
}
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public String toString() {
|
|
|
|
+ return "ExamRecordData{" +
|
|
|
|
+ "id=" + id +
|
|
|
|
+ ", examId=" + examId +
|
|
|
|
+ ", examType=" + examType +
|
|
|
|
+ ", examStudentId=" + examStudentId +
|
|
|
|
+ ", studentId=" + studentId +
|
|
|
|
+ ", courseId=" + courseId +
|
|
|
|
+ ", orgId=" + orgId +
|
|
|
|
+ ", rootOrgId=" + rootOrgId +
|
|
|
|
+ ", basePaperId='" + basePaperId + '\'' +
|
|
|
|
+ ", paperType='" + paperType + '\'' +
|
|
|
|
+ ", startTime=" + startTime +
|
|
|
|
+ ", endTime=" + endTime +
|
|
|
|
+ ", usedExamTime=" + usedExamTime +
|
|
|
|
+ ", isContinued=" + isContinued +
|
|
|
|
+ ", continuedCount=" + continuedCount +
|
|
|
|
+ ", isExceed=" + isExceed +
|
|
|
|
+ ", faceSuccessCount=" + faceSuccessCount +
|
|
|
|
+ ", faceFailedCount=" + faceFailedCount +
|
|
|
|
+ ", faceStrangerCount=" + faceStrangerCount +
|
|
|
|
+ ", faceTotalCount=" + faceTotalCount +
|
|
|
|
+ ", examRecordStatus=" + examRecordStatus +
|
|
|
|
+ ", handInExamType=" + handInExamType +
|
|
|
|
+ ", faceVerifyResult=" + faceVerifyResult +
|
|
|
|
+ ", cleanTime=" + cleanTime +
|
|
|
|
+ ", isWarn=" + isWarn +
|
|
|
|
+ ", isAudit=" + isAudit +
|
|
|
|
+ ", isIllegality=" + isIllegality +
|
|
|
|
+ ", totalScore=" + totalScore +
|
|
|
|
+ ", objectiveScore=" + objectiveScore +
|
|
|
|
+ ", objectiveAccuracy=" + objectiveAccuracy +
|
|
|
|
+ ", subjectiveScore=" + subjectiveScore +
|
|
|
|
+ ", succPercent=" + succPercent +
|
|
|
|
+ ", faceSuccessPercent=" + faceSuccessPercent +
|
|
|
|
+ ", baiduFaceLivenessSuccessPercent=" + baiduFaceLivenessSuccessPercent +
|
|
|
|
+ ", syncStatus=" + syncStatus +
|
|
|
|
+ ", questionCount=" + questionCount +
|
|
|
|
+ ", isAllObjectivePaper=" + isAllObjectivePaper +
|
|
|
|
+ '}';
|
|
|
|
+ }
|
|
}
|
|
}
|