1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| package com.zy.asrs.service;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * 监控大屏报表查询
| */
| public interface MonitorReportService {
|
| List<Map<String, Object>> getPakinRepData();
|
| Map<String, Object> getLocIoLineChartsData();
|
| Map<String, Object> getLocRepData();
|
| List<Integer> getLocMapRows();
|
| Map<String, Object> getLocMapData(Integer row);
| }
|
|