| | |
| | | String userId = userIdArray.getString(0); |
| | | |
| | | UserFaceVo userFaceVo = userMapper.queryUserFaceSingle(userId); |
| | | userFaceVo.setTemplateImgUrl(vfPrefix+userFaceVo.getTemplateImgUrl()); |
| | | userFaceVo.setTemplateImgUrl(vfPrefix+"/"+userFaceVo.getTemplateImgUrl()); |
| | | |
| | | JSONObject jsonObject = new JSONObject(); |
| | | jsonObject.put("code",0); |
| | |
| | | @Override |
| | | public void personNotify(String mess) { |
| | | JSONObject reqJson = JSONObject.parseObject(mess); |
| | | logger.info("接收设备下发结果通知################"+mess); |
| | | if(reqJson.containsKey("success")&&reqJson.getBooleanValue("success")){ |
| | | String userIds = reqJson.getString("successful"); |
| | | if(!StringUtils.isEmpty(userIds)){ |
| | |
| | | JSONObject failUserInfo = JSON.parseObject(obj.toString()); |
| | | String userId = failUserInfo.getString("person_id"); |
| | | JSONArray failInfoArray = failUserInfo.getJSONArray("info"); |
| | | String failReason = failInfoArray.getJSONObject(0).getString("reason"); |
| | | String failReason = ""; |
| | | if(failInfoArray.size()>0) failReason = failInfoArray.getJSONObject(0).getString("reason"); |
| | | userMapper.syncFail(userId,failReason); |
| | | } |
| | | } |