|
@@ -23,9 +23,6 @@ public class ExamPropCountDto implements Serializable {
|
|
@ApiModelProperty(name = "应考人数")
|
|
@ApiModelProperty(name = "应考人数")
|
|
private Integer allCount;//应考人数
|
|
private Integer allCount;//应考人数
|
|
|
|
|
|
- @ApiModelProperty(name = "已登录")
|
|
|
|
- private Integer loginCount;//已登录
|
|
|
|
-
|
|
|
|
@ApiModelProperty(name = "已待考")
|
|
@ApiModelProperty(name = "已待考")
|
|
private Integer prepareCount;//已待考
|
|
private Integer prepareCount;//已待考
|
|
|
|
|
|
@@ -69,10 +66,9 @@ public class ExamPropCountDto implements Serializable {
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
- public ExamPropCountDto(Long examId, Integer allCount, Integer loginCount, Integer prepareCount, Integer examCount, Integer clientWebsocketStatusCount, Integer monitorStatusSourceCount, Integer alreadyComplete, Integer notComplete, Set<String> roomCodes, BigDecimal completionRate) {
|
|
|
|
|
|
+ public ExamPropCountDto(Long examId, Integer allCount, Integer prepareCount, Integer examCount, Integer clientWebsocketStatusCount, Integer monitorStatusSourceCount, Integer alreadyComplete, Integer notComplete, Set<String> roomCodes, BigDecimal completionRate) {
|
|
this.examId = examId;
|
|
this.examId = examId;
|
|
this.allCount = allCount;
|
|
this.allCount = allCount;
|
|
- this.loginCount = loginCount;
|
|
|
|
this.prepareCount = prepareCount;
|
|
this.prepareCount = prepareCount;
|
|
this.examCount = examCount;
|
|
this.examCount = examCount;
|
|
this.clientWebsocketStatusCount = clientWebsocketStatusCount;
|
|
this.clientWebsocketStatusCount = clientWebsocketStatusCount;
|
|
@@ -83,10 +79,9 @@ public class ExamPropCountDto implements Serializable {
|
|
this.completionRate = completionRate;
|
|
this.completionRate = completionRate;
|
|
}
|
|
}
|
|
|
|
|
|
- public ExamPropCountDto(Long examId, Integer allCount, Integer loginCount, Integer prepareCount, Integer examCount, Integer clientWebsocketStatusCount, Integer monitorStatusSourceCount, Integer alreadyComplete, Integer notComplete, BigDecimal completionRate) {
|
|
|
|
|
|
+ public ExamPropCountDto(Long examId, Integer allCount, Integer prepareCount, Integer examCount, Integer clientWebsocketStatusCount, Integer monitorStatusSourceCount, Integer alreadyComplete, Integer notComplete, BigDecimal completionRate) {
|
|
this.examId = examId;
|
|
this.examId = examId;
|
|
this.allCount = allCount;
|
|
this.allCount = allCount;
|
|
- this.loginCount = loginCount;
|
|
|
|
this.prepareCount = prepareCount;
|
|
this.prepareCount = prepareCount;
|
|
this.examCount = examCount;
|
|
this.examCount = examCount;
|
|
this.clientWebsocketStatusCount = clientWebsocketStatusCount;
|
|
this.clientWebsocketStatusCount = clientWebsocketStatusCount;
|
|
@@ -168,14 +163,6 @@ public class ExamPropCountDto implements Serializable {
|
|
this.allCount = allCount;
|
|
this.allCount = allCount;
|
|
}
|
|
}
|
|
|
|
|
|
- public Integer getLoginCount() {
|
|
|
|
- return loginCount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setLoginCount(Integer loginCount) {
|
|
|
|
- this.loginCount = loginCount;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
public Integer getPrepareCount() {
|
|
public Integer getPrepareCount() {
|
|
return prepareCount;
|
|
return prepareCount;
|
|
}
|
|
}
|