| | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | | * 监控设备 Mapper 接口 |
| | |
| | | * @return |
| | | */ |
| | | Page<MwMonitorDeviceVO> pageList(Page<MwMonitorDeviceVO> page, @Param("query") MwMonitorDeviceQuery query, @Param("treeCode") String treeCode); |
| | | |
| | | /** |
| | | * 实时监控列表 |
| | | * |
| | | * @param page |
| | | * @param deviceList |
| | | * @return |
| | | */ |
| | | Page<MwMonitorDeviceVO> pageMonitorPage(Page<MwMonitorDeviceVO> page, @Param("status") Integer status, @Param("treeCode") String treeCode, @Param("deviceList") List<String> deviceList); |
| | | } |