xiatian 1 рік тому
батько
коміт
ed00d1e7c8

+ 0 - 10
examcloud-core-marking-api/src/main/java/cn/com/qmth/examcloud/marking/api/bean/MarkWorkBean.java

@@ -3,7 +3,6 @@ package cn.com.qmth.examcloud.marking.api.bean;
 import java.util.Date;
 import java.util.List;
 
-import cn.com.qmth.examcloud.api.commons.enums.CallType;
 import cn.com.qmth.examcloud.api.commons.enums.ExamType;
 import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
 
@@ -25,7 +24,6 @@ public class MarkWorkBean implements JsonSerializable {
 
 	private List<Long> examIds;
 	private ExamType examType;
-	private CallType callType;
 	private String remark;
 
 	private Long totalStudentPaper;
@@ -192,14 +190,6 @@ public class MarkWorkBean implements JsonSerializable {
 		this.appendTime = appendTime;
 	}
 
-	public CallType getCallType() {
-		return callType;
-	}
-
-	public void setCallType(CallType callType) {
-		this.callType = callType;
-	}
-
 	public ExamType getExamType() {
 		return examType;
 	}

+ 0 - 10
examcloud-core-marking-api/src/main/java/cn/com/qmth/examcloud/marking/api/bean/MarkWorkMainBean.java

@@ -3,7 +3,6 @@ package cn.com.qmth.examcloud.marking.api.bean;
 import java.util.Date;
 import java.util.List;
 
-import cn.com.qmth.examcloud.api.commons.enums.CallType;
 import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
 
 public class MarkWorkMainBean implements JsonSerializable {
@@ -26,8 +25,6 @@ public class MarkWorkMainBean implements JsonSerializable {
     private Long rootOrgId;
 
     private Long appendTime;
-    
-    private CallType callType;
 
     private List<Long> examIds;
 
@@ -95,12 +92,5 @@ public class MarkWorkMainBean implements JsonSerializable {
         this.examIds = examIds;
     }
 
-	public CallType getCallType() {
-		return callType;
-	}
-
-	public void setCallType(CallType callType) {
-		this.callType = callType;
-	}
 
 }

+ 12 - 13
examcloud-core-marking-api/src/main/java/cn/com/qmth/examcloud/marking/api/bean/MarkerBean.java

@@ -5,7 +5,6 @@ import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
 
 /**
  * @ClassName Marker
- * @Description TODO
  * @Author nikang
  * @Date 2018/9/20 11:48
  * @Version 3.0
@@ -19,10 +18,10 @@ public class MarkerBean implements JsonSerializable {
     private Long markedCount;
     private Long courseCount;
     private Long finishedCount;
-    private double maxScore;
-    private double minScore;
-    private double avgScore;
-    private double stdDev;
+    private Double maxScore;
+    private Double minScore;
+    private Double avgScore;
+    private Double stdDev;
 
     public MarkerBean() {
     }
@@ -67,35 +66,35 @@ public class MarkerBean implements JsonSerializable {
         this.finishedCount = finishedCount;
     }
 
-    public double getMaxScore() {
+    public Double getMaxScore() {
         return maxScore;
     }
 
-    public void setMaxScore(double maxScore) {
+    public void setMaxScore(Double maxScore) {
         this.maxScore = maxScore;
     }
 
-    public double getMinScore() {
+    public Double getMinScore() {
         return minScore;
     }
 
-    public void setMinScore(double minScore) {
+    public void setMinScore(Double minScore) {
         this.minScore = minScore;
     }
 
-    public double getAvgScore() {
+    public Double getAvgScore() {
         return avgScore;
     }
 
-    public void setAvgScore(double avgScore) {
+    public void setAvgScore(Double avgScore) {
         this.avgScore = avgScore;
     }
 
-    public double getStdDev() {
+    public Double getStdDev() {
         return stdDev;
     }
 
-    public void setStdDev(double stdDev) {
+    public void setStdDev(Double stdDev) {
         this.stdDev = stdDev;
     }