| | |
| | | @OnMessage |
| | | public void onMessage(String message, Session session) { |
| | | // 提取数据 |
| | | logger.info("收到的原始数据:{}", message); |
| | | dealData(message); |
| | | } |
| | | |
| | |
| | | if (deviceInfo.getCallstatus().equals("RINGING")) { |
| | | logger.info("收到设备报警信息:{}", message); |
| | | ComPropertyAlarm comPropertyAlarm = new ComPropertyAlarm(); |
| | | comPropertyAlarm.setSerialNo(deviceInfo.getCallid()); |
| | | comPropertyAlarm.setStatus(1); |
| | | comPropertyAlarm.setSerialNo(deviceInfo.getUserid()); |
| | | comPropertyAlarm.setStatus(0); |
| | | comPropertyAlarm.setCreateTime(new Date()); |
| | | comPropertyAlarm.setType(1); |
| | | comPropertyAlarmDao.insert(comPropertyAlarm); |
| | | } |
| | | } |