|
@@ -52,6 +52,17 @@ public class ExamCertificationDto{
|
|
|
@ApiModelProperty(value = "考试时长")
|
|
|
private Integer examDuration;
|
|
|
|
|
|
+ @ApiModelProperty(value = "学员考试状态 0考试中,1呼叫中,2已签到,3未签到,4录播中,5已完成")
|
|
|
+ private Integer isFinishedExam;
|
|
|
+
|
|
|
+ public Integer getIsFinishedExam() {
|
|
|
+ return isFinishedExam;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsFinishedExam(Integer isFinishedExam) {
|
|
|
+ this.isFinishedExam = isFinishedExam;
|
|
|
+ }
|
|
|
+
|
|
|
public Integer getExamDuration() {
|
|
|
return examDuration;
|
|
|
}
|