|
@@ -7,81 +7,48 @@ public class OuterQueryFinalScoreDataResp extends EnterpriseResponse {
|
|
|
|
|
|
private static final long serialVersionUID = 7651693026235437061L;
|
|
|
|
|
|
- @ApiModelProperty(value = "学生姓名", example = "张三")
|
|
|
- private String studentName;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "证件号", example = "123456789123456789X")
|
|
|
- private String identityNumber;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "学号", example = "S123456789")
|
|
|
- private String studentCode;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "考试课程代码", example = "c101")
|
|
|
- private String courseCode;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "考试课程名称", example = "C语言")
|
|
|
- private String courseName;
|
|
|
-
|
|
|
- @ApiModelProperty(value = "得分", example = "100.0")
|
|
|
+ @ApiModelProperty(value = "最终成绩", example = "100.0", notes = "缺考、违纪、未审核时,成绩返回空")
|
|
|
private Double totalScore;
|
|
|
|
|
|
@ApiModelProperty(value = "是否缺考", example = "false")
|
|
|
- private Boolean absent;
|
|
|
-
|
|
|
- public String getStudentName() {
|
|
|
- return studentName;
|
|
|
- }
|
|
|
+ private Boolean isAbsent;
|
|
|
|
|
|
- public void setStudentName(String studentName) {
|
|
|
- this.studentName = studentName;
|
|
|
- }
|
|
|
-
|
|
|
- public String getIdentityNumber() {
|
|
|
- return identityNumber;
|
|
|
- }
|
|
|
+ @ApiModelProperty(value = "是否违纪", example = "false")
|
|
|
+ private Boolean isIllegality;
|
|
|
|
|
|
- public void setIdentityNumber(String identityNumber) {
|
|
|
- this.identityNumber = identityNumber;
|
|
|
- }
|
|
|
+ @ApiModelProperty(value = "是否已审核", example = "false")
|
|
|
+ private Boolean isAudit;
|
|
|
|
|
|
- public String getStudentCode() {
|
|
|
- return studentCode;
|
|
|
- }
|
|
|
-
|
|
|
- public void setStudentCode(String studentCode) {
|
|
|
- this.studentCode = studentCode;
|
|
|
- }
|
|
|
-
|
|
|
- public String getCourseCode() {
|
|
|
- return courseCode;
|
|
|
+ public Double getTotalScore() {
|
|
|
+ return totalScore;
|
|
|
}
|
|
|
|
|
|
- public void setCourseCode(String courseCode) {
|
|
|
- this.courseCode = courseCode;
|
|
|
+ public void setTotalScore(Double totalScore) {
|
|
|
+ this.totalScore = totalScore;
|
|
|
}
|
|
|
|
|
|
- public String getCourseName() {
|
|
|
- return courseName;
|
|
|
+ public Boolean getAbsent() {
|
|
|
+ return isAbsent;
|
|
|
}
|
|
|
|
|
|
- public void setCourseName(String courseName) {
|
|
|
- this.courseName = courseName;
|
|
|
+ public void setAbsent(Boolean absent) {
|
|
|
+ this.isAbsent = absent;
|
|
|
}
|
|
|
|
|
|
- public Double getTotalScore() {
|
|
|
- return totalScore;
|
|
|
+ public Boolean getIllegality() {
|
|
|
+ return isIllegality;
|
|
|
}
|
|
|
|
|
|
- public void setTotalScore(Double totalScore) {
|
|
|
- this.totalScore = totalScore;
|
|
|
+ public void setIllegality(Boolean illegality) {
|
|
|
+ this.isIllegality = illegality;
|
|
|
}
|
|
|
|
|
|
- public Boolean getAbsent() {
|
|
|
- return absent;
|
|
|
+ public Boolean getAudit() {
|
|
|
+ return isAudit;
|
|
|
}
|
|
|
|
|
|
- public void setAbsent(Boolean absent) {
|
|
|
- this.absent = absent;
|
|
|
+ public void setAudit(Boolean audit) {
|
|
|
+ this.isAudit = audit;
|
|
|
}
|
|
|
|
|
|
}
|