|
|
@ -174,7 +174,7 @@ public class AlarmInfoServiceImpl implements AlarmInfoService { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void dowload(List<AlarmLog> queryAll, HttpServletResponse response) throws Exception { |
|
|
|
public void download(List<AlarmLog> queryAll, HttpServletResponse response) throws Exception { |
|
|
|
List<Map<String, Object>> list = new ArrayList<>(); |
|
|
|
for (AlarmLog alarmLog : queryAll) { |
|
|
|
Map<String, Object> map = new LinkedHashMap<>(); |
|
|
@ -190,6 +190,11 @@ public class AlarmInfoServiceImpl implements AlarmInfoService { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public List<AlarmLog> queryAll(AlarmLogCriteria criteria) { |
|
|
|
return null; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* 修改报警状态 |
|
|
|
* |
|
|
|