| | |
| | | return null; |
| | | } |
| | | /** |
| | | *通过openId或userName等删除绑定信息 |
| | | * @return |
| | | */ |
| | | public static BaseResponse userOpenidDel(UserOpenidSaveRequest param){ |
| | | log.info("【海康通过openId或userName等删除绑定信息】================开始===="+JSONObject.toJSONString(param)); |
| | | try { |
| | | String res = HKTools.userOpenidDel(toMap(param)); |
| | | TypeReference typeReference = |
| | | new TypeReference< BaseResponse >(){}; |
| | | BaseResponse<Integer> result = JSONObject.parseObject(res, typeReference.getType()); |
| | | logResult(result,"海康通过openId或userName等删除绑定信息"); |
| | | return result; |
| | | }catch (Exception e){ |
| | | log.error("【海康通过openId或userName等删除绑定信息】================失败====:\n"+ e.getMessage()); |
| | | } |
| | | return null; |
| | | } |
| | | /** |
| | | *分页查询设备监测历史数据 |
| | | * @return |
| | | */ |