Commit 096c4f21 by yangchen

聚投诉时间判断错误修改

parent 7e601698
......@@ -29,7 +29,7 @@ public class Ts21cnAnalysis {
for(int i = 0;i < jsonArray.size();i++) {
JSONObject data = jsonArray.getJSONObject(i);
String ctime = data.getString("ctimeStr");
if(nonNull(time) && ctime.compareTo(time) > -1) {
if(nonNull(time) && ctime.compareTo(time) < 1) {
continue;
}
Map<String,Object> map = new HashMap<>();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment