| | |
| | | * 模糊查询 |
| | | */ |
| | | public List<MonitorBo> listMonitorByKeyword(BaseConditionVO baseConditionVO, MonitorParam monitorParam) { |
| | | Long clientId = SecurityUtils.getClientId(); |
| | | PageHelper.startPage(baseConditionVO.getPageNo(), baseConditionVO.getPageSize()); |
| | | List<MonitorBo> monitorList; |
| | | //绑定状态:已绑定/未绑定/全部 |
| | |
| | | |
| | | //为空是超管 |
| | | if (SecurityUtils.getClientId() == null) { |
| | | monitorList = monitorMapper.listMonitorByIds(monitorParam.getKeyword(), clientId |
| | | monitorList = monitorMapper.listMonitorByIds(monitorParam.getKeyword() |
| | | , monitorParam.getBindingState(), monitorParam.getEquipmentState(), null); |
| | | } else { |
| | | monitorList = monitorMapper.listMonitorByIds(monitorParam.getKeyword(), clientId |
| | | monitorList = monitorMapper.listMonitorByIds(monitorParam.getKeyword() |
| | | , monitorParam.getBindingState(), monitorParam.getEquipmentState(), SecurityUtils.getUserId()); |
| | | } |
| | | |