|
@ -628,9 +628,6 @@ public class StatisticsService {
|
|
|
JSONArray statusArray = new JSONArray();
|
|
|
for(int i=0;i<statusList.size();i++){
|
|
|
SaveModel saveModel = statusList.get(i);
|
|
|
if ("0".equals(saveModel.getSlaveKey1())){//去除60岁以下老人
|
|
|
continue;
|
|
|
}
|
|
|
JSONObject json = new JSONObject();
|
|
|
json.put("num",saveModel.getResult2().longValue());
|
|
|
json.put("code",saveModel.getSlaveKey1());
|
|
@ -668,6 +665,9 @@ public class StatisticsService {
|
|
|
JSONArray ageArray = new JSONArray();
|
|
|
for(int i=0;i<ageList.size();i++){
|
|
|
SaveModel saveModel = ageList.get(i);
|
|
|
if ("0".equals(saveModel.getSlaveKey1())){//去除60岁以下老人
|
|
|
continue;
|
|
|
}
|
|
|
JSONObject json = new JSONObject();
|
|
|
json.put("num",saveModel.getResult2().longValue());
|
|
|
json.put("code",saveModel.getSlaveKey1());
|