|
|
@@ -16,10 +16,9 @@ public class ExamVO {
|
|
|
private String managerName;
|
|
|
private Integer duration;
|
|
|
private List<Long> groupIds;
|
|
|
-
|
|
|
- private Integer workerCount;
|
|
|
private List<String> groupNames;
|
|
|
private Integer status;
|
|
|
+ private Byte type;
|
|
|
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
@@ -101,14 +100,6 @@ public class ExamVO {
|
|
|
this.groupIds = groupIds;
|
|
|
}
|
|
|
|
|
|
- public Integer getWorkerCount() {
|
|
|
- return workerCount;
|
|
|
- }
|
|
|
-
|
|
|
- public void setWorkerCount(Integer workerCount) {
|
|
|
- this.workerCount = workerCount;
|
|
|
- }
|
|
|
-
|
|
|
public List<String> getGroupNames() {
|
|
|
return groupNames;
|
|
|
}
|
|
|
@@ -125,5 +116,7 @@ public class ExamVO {
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
+ public Byte getType() { return type; }
|
|
|
|
|
|
+ public void setType(Byte type) { this.type = type; }
|
|
|
}
|