| | |
| | | List<Map<String, Object>> policeList = serverHandler.alarmService.queryPolice(); |
| | | List<Map<String, Object>> online_police = new ArrayList<>(); |
| | | for (int i = 0; i < policeList.size(); i++) { |
| | | if (policeList.get(i).get("work_status").equals(0)){ |
| | | //System.out.println(policeList.get(i).get("real_name")); |
| | | online_police.add(policeList.get(i)); |
| | | //System.out.println(policeList.get(i).get("real_name")); |
| | | if(policeList.get(i).get("online_status").equals(1)){ |
| | | if (policeList.get(i).get("work_status").equals(0)){ |
| | | online_police.add(policeList.get(i)); |
| | | } |
| | | } |
| | | } |
| | | |