| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.moral.api.pojo.dto.dataDisplay.HeatMapDTO; |
| | | import com.moral.api.pojo.vo.device.AppDeviceVo; |
| | | import com.moral.api.pojo.vo.device.DeviceVO; |
| | | import com.moral.api.vo.OnlineRateVo; |
| | | |
| | | import io.lettuce.core.dynamic.annotation.Param; |
| | |
| | | Page<OnlineRateVo> getPage(Page page, @Param("organizationId")Integer organizationId); |
| | | |
| | | //设备在线率不分页 |
| | | List<OnlineRateVo> getLists(@Param("organizationId")Integer organizationId,@Param("state")Integer state); |
| | | List<OnlineRateVo> getLists(List<String> macs,@Param("state")Integer state); |
| | | |
| | | List<DeviceVO> getListVo(Integer monitorPointId); |
| | | |
| | | } |