|
@@ -134,6 +134,7 @@ public class DataSyncThread implements Runnable {
|
|
|
}
|
|
|
JSONArray studentArray = studentJson.getJSONArray(DATA_LIST);
|
|
|
List<ExamStudent> list = new ArrayList<ExamStudent>();
|
|
|
+ Date now = new Date();
|
|
|
for (int j = 0; j < studentArray.size(); j++) {
|
|
|
JSONObject student = studentArray.getJSONObject(j);
|
|
|
ExamStudent examStudent = new ExamStudent();
|
|
@@ -162,6 +163,7 @@ public class DataSyncThread implements Runnable {
|
|
|
examStudent.setSubjectiveScore(0d);
|
|
|
examStudent.setAnswers(null);
|
|
|
examStudent.setBatchCode(null);
|
|
|
+ examStudent.setUploadTime(now);
|
|
|
list.add(examStudent);
|
|
|
|
|
|
String answerJson = student.getString("subjectives");
|