|
@@ -6,17 +6,17 @@ public class ExamVo extends ExamEntity {
|
|
|
|
|
|
private String orgName;
|
|
|
|
|
|
- private Integer studentCount;
|
|
|
+ private int studentCount;
|
|
|
|
|
|
- private Integer checkCount;
|
|
|
+ private int checkCount;
|
|
|
|
|
|
- private Integer checkNormalLCount;
|
|
|
+ private int checkNormalLCount;
|
|
|
|
|
|
- private Integer checkErrorCount;
|
|
|
+ private int checkErrorCount;
|
|
|
|
|
|
- private Integer breakCount;
|
|
|
+ private int breakCount;
|
|
|
|
|
|
- private Integer breakNormalLCount;
|
|
|
+ private int breakNormalLCount;
|
|
|
|
|
|
public String getOrgName() {
|
|
|
return orgName;
|
|
@@ -26,51 +26,51 @@ public class ExamVo extends ExamEntity {
|
|
|
this.orgName = orgName;
|
|
|
}
|
|
|
|
|
|
- public Integer getStudentCount() {
|
|
|
+ public int getStudentCount() {
|
|
|
return studentCount;
|
|
|
}
|
|
|
|
|
|
- public void setStudentCount(Integer studentCount) {
|
|
|
+ public void setStudentCount(int studentCount) {
|
|
|
this.studentCount = studentCount;
|
|
|
}
|
|
|
|
|
|
- public Integer getCheckCount() {
|
|
|
+ public int getCheckCount() {
|
|
|
return checkCount;
|
|
|
}
|
|
|
|
|
|
- public void setCheckCount(Integer checkCount) {
|
|
|
+ public void setCheckCount(int checkCount) {
|
|
|
this.checkCount = checkCount;
|
|
|
}
|
|
|
|
|
|
- public Integer getCheckNormalLCount() {
|
|
|
+ public int getCheckNormalLCount() {
|
|
|
return checkNormalLCount;
|
|
|
}
|
|
|
|
|
|
- public void setCheckNormalLCount(Integer checkNormalLCount) {
|
|
|
+ public void setCheckNormalLCount(int checkNormalLCount) {
|
|
|
this.checkNormalLCount = checkNormalLCount;
|
|
|
}
|
|
|
|
|
|
- public Integer getCheckErrorCount() {
|
|
|
+ public int getCheckErrorCount() {
|
|
|
return checkErrorCount;
|
|
|
}
|
|
|
|
|
|
- public void setCheckErrorCount(Integer checkErrorCount) {
|
|
|
+ public void setCheckErrorCount(int checkErrorCount) {
|
|
|
this.checkErrorCount = checkErrorCount;
|
|
|
}
|
|
|
|
|
|
- public Integer getBreakCount() {
|
|
|
+ public int getBreakCount() {
|
|
|
return breakCount;
|
|
|
}
|
|
|
|
|
|
- public void setBreakCount(Integer breakCount) {
|
|
|
+ public void setBreakCount(int breakCount) {
|
|
|
this.breakCount = breakCount;
|
|
|
}
|
|
|
|
|
|
- public Integer getBreakNormalLCount() {
|
|
|
+ public int getBreakNormalLCount() {
|
|
|
return breakNormalLCount;
|
|
|
}
|
|
|
|
|
|
- public void setBreakNormalLCount(Integer breakNormalLCount) {
|
|
|
+ public void setBreakNormalLCount(int breakNormalLCount) {
|
|
|
this.breakNormalLCount = breakNormalLCount;
|
|
|
}
|
|
|
}
|