|
@@ -21,7 +21,7 @@ public class DataTask implements ITask {
|
|
|
public void run() {
|
|
|
// TODO Auto-generated method stub
|
|
|
DataService dService = ServiceFactory.getService(DataService.class);
|
|
|
- JSONArray jsonArray = dService.getExamList(600);
|
|
|
+ JSONArray jsonArray = dService.getExamList(100);
|
|
|
for (Object object : jsonArray) {
|
|
|
try {
|
|
|
JSONObject jsonObject = JSON.parseObject(object.toString());
|
|
@@ -29,9 +29,9 @@ public class DataTask implements ITask {
|
|
|
if (record == null) {
|
|
|
continue;
|
|
|
}
|
|
|
- if (parseStringToDate(record.getStr("checktime"))==Boolean.FALSE) {
|
|
|
- continue;
|
|
|
- }
|
|
|
+// if (parseStringToDate(record.getStr("checktime"))==Boolean.FALSE) {
|
|
|
+// continue;
|
|
|
+// }
|
|
|
if (record.getStr("impression").isBlank() && record.getStr("description").isBlank()) {
|
|
|
continue;
|
|
|
}
|