deason 7 月之前
父节点
当前提交
df143c7b87

+ 9 - 9
examcloud-core-oe-admin-api/src/main/java/cn/com/qmth/examcloud/core/oe/admin/api/response/GetFinalScoreDataResp.java

@@ -10,13 +10,13 @@ public class GetFinalScoreDataResp extends BaseResponse {
 	private static final long serialVersionUID = 7643805576514948677L;
 
 	// 是否缺考
-	private Boolean isAbsent;
+	private Boolean absent;
 
 	// 是否违纪
-	private Boolean isIllegality;
+	private Boolean illegality;
 
 	// 是否已审
-	private Boolean isAudit;
+	private Boolean audit;
 
 	// 最终成绩对象(缺考/违纪/未审核 时,此对象为null)
 	private ScoreDataBean scoreDataBean;
@@ -25,27 +25,27 @@ public class GetFinalScoreDataResp extends BaseResponse {
 	private List<ScoreDataBean> allScoreDataBeanList;
 
 	public Boolean getAbsent() {
-		return isAbsent;
+		return absent;
 	}
 
 	public void setAbsent(Boolean absent) {
-		this.isAbsent = absent;
+		this.absent = absent;
 	}
 
 	public Boolean getIllegality() {
-		return isIllegality;
+		return illegality;
 	}
 
 	public void setIllegality(Boolean illegality) {
-		this.isIllegality = illegality;
+		this.illegality = illegality;
 	}
 
 	public Boolean getAudit() {
-		return isAudit;
+		return audit;
 	}
 
 	public void setAudit(Boolean audit) {
-		this.isAudit = audit;
+		this.audit = audit;
 	}
 
 	public ScoreDataBean getScoreDataBean() {

+ 9 - 9
examcloud-exchange-api/src/main/java/cn/com/qmth/examcloud/exchange/outer/api/response/OuterQueryFinalScoreDataResp.java

@@ -11,13 +11,13 @@ public class OuterQueryFinalScoreDataResp extends EnterpriseResponse {
     private Double totalScore;
 
     @ApiModelProperty(value = "是否缺考", example = "false")
-    private Boolean isAbsent;
+    private Boolean absent;
 
     @ApiModelProperty(value = "是否违纪", example = "false")
-    private Boolean isIllegality;
+    private Boolean illegality;
 
     @ApiModelProperty(value = "是否已审核", example = "false")
-    private Boolean isAudit;
+    private Boolean audit;
 
     public Double getTotalScore() {
         return totalScore;
@@ -28,27 +28,27 @@ public class OuterQueryFinalScoreDataResp extends EnterpriseResponse {
     }
 
     public Boolean getAbsent() {
-        return isAbsent;
+        return absent;
     }
 
     public void setAbsent(Boolean absent) {
-        this.isAbsent = absent;
+        this.absent = absent;
     }
 
     public Boolean getIllegality() {
-        return isIllegality;
+        return illegality;
     }
 
     public void setIllegality(Boolean illegality) {
-        this.isIllegality = illegality;
+        this.illegality = illegality;
     }
 
     public Boolean getAudit() {
-        return isAudit;
+        return audit;
     }
 
     public void setAudit(Boolean audit) {
-        this.isAudit = audit;
+        this.audit = audit;
     }
 
 }