|
@@ -1,5 +1,6 @@
|
|
|
package edu.nju.service;
|
|
|
|
|
|
+import com.sun.codemodel.internal.JNullType;
|
|
|
import edu.nju.dao.*;
|
|
|
import edu.nju.entities.*;
|
|
|
import edu.nju.model.ReviewWorkerVO;
|
|
@@ -290,9 +291,10 @@ public class ReviewAnalyzeService {
|
|
|
String caseId =reviewJob.getCase_id();
|
|
|
String examId=reviewJob.getExam_id();
|
|
|
String caseTakeId =caseId+examId;
|
|
|
- analyzeService.getScores(caseTakeId);
|
|
|
+ JSONArray json=analyzeService.getScores(caseTakeId);
|
|
|
result.put("status","200");
|
|
|
result.put("计算工人分数并上传","成功");
|
|
|
+ result.put("jsonArray",json);
|
|
|
}
|
|
|
}
|
|
|
return result;
|