| | |
| | | |
| | | @Override |
| | | @Transactional |
| | | public void deleteNotify() { |
| | | String mess = "{}"; |
| | | public void removeNotify(String mess) { |
| | | logger.info("删除人员通知"+mess); |
| | | JSONObject jsonObject = JSON.parseObject(mess); |
| | | if(jsonObject.containsKey("success")&&jsonObject.getBooleanValue("success")){ |
| | | JSONObject paramJson = jsonObject.getJSONObject("param"); |
| | | JSONObject paramJson = jsonObject.getJSONObject("params"); |
| | | List<String> userIds = JSONArray.parseArray(paramJson.getString("userIds"),String.class); |
| | | userMapper.syncResult(3,userIds); |
| | | } |