|
@@ -1,6 +1,5 @@
|
|
package com.keao.edu.user.dto;
|
|
package com.keao.edu.user.dto;
|
|
|
|
|
|
-import com.keao.edu.user.enums.ExamStatusEnum;
|
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
public class ExamReviewRecordDto {
|
|
public class ExamReviewRecordDto {
|
|
@@ -8,15 +7,15 @@ public class ExamReviewRecordDto {
|
|
@ApiModelProperty(value = "学员报名编号")
|
|
@ApiModelProperty(value = "学员报名编号")
|
|
private Long examRegistrationId;
|
|
private Long examRegistrationId;
|
|
|
|
|
|
- @ApiModelProperty(value = "项目状态")
|
|
|
|
- private ExamStatusEnum examBasicStatus;
|
|
|
|
-
|
|
|
|
@ApiModelProperty(value = "学员名称")
|
|
@ApiModelProperty(value = "学员名称")
|
|
private String realName;
|
|
private String realName;
|
|
|
|
|
|
@ApiModelProperty(value = "学员编号")
|
|
@ApiModelProperty(value = "学员编号")
|
|
private Integer studentId;
|
|
private Integer studentId;
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "是否开启考场")
|
|
|
|
+ private Integer openFlag;
|
|
|
|
+
|
|
@ApiModelProperty(value = "是否录制")
|
|
@ApiModelProperty(value = "是否录制")
|
|
private Integer recordFlag;
|
|
private Integer recordFlag;
|
|
|
|
|
|
@@ -41,12 +40,12 @@ public class ExamReviewRecordDto {
|
|
@ApiModelProperty(value = "评审编号")
|
|
@ApiModelProperty(value = "评审编号")
|
|
private Integer examReviewId;
|
|
private Integer examReviewId;
|
|
|
|
|
|
- public ExamStatusEnum getExamBasicStatus() {
|
|
|
|
- return examBasicStatus;
|
|
|
|
|
|
+ public Integer getOpenFlag() {
|
|
|
|
+ return openFlag;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setExamBasicStatus(ExamStatusEnum examBasicStatus) {
|
|
|
|
- this.examBasicStatus = examBasicStatus;
|
|
|
|
|
|
+ public void setOpenFlag(Integer openFlag) {
|
|
|
|
+ this.openFlag = openFlag;
|
|
}
|
|
}
|
|
|
|
|
|
public Long getExamRegistrationId() {
|
|
public Long getExamRegistrationId() {
|