|
@@ -1,5 +1,8 @@
|
|
|
package cn.com.qmth.examcloud.marking.api.bean;
|
|
|
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
import cn.com.qmth.examcloud.api.commons.exchange.JsonSerializable;
|
|
|
|
|
|
|
|
@@ -22,6 +25,9 @@ public class MarkerBean implements JsonSerializable {
|
|
|
private Double minScore;
|
|
|
private Double avgScore;
|
|
|
private Double stdDev;
|
|
|
+
|
|
|
+ private double sumScore;
|
|
|
+ private List<Double> stdList = new ArrayList<Double>();
|
|
|
|
|
|
public MarkerBean() {
|
|
|
}
|
|
@@ -113,4 +119,22 @@ public class MarkerBean implements JsonSerializable {
|
|
|
public void setUserLoginName(String userLoginName) {
|
|
|
this.userLoginName = userLoginName;
|
|
|
}
|
|
|
+
|
|
|
+ public double getSumScore() {
|
|
|
+ return sumScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSumScore(double sumScore) {
|
|
|
+ this.sumScore = sumScore;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<Double> getStdList() {
|
|
|
+ return stdList;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStdList(List<Double> stdList) {
|
|
|
+ this.stdList = stdList;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|