old mode 100644
new mode 100755
| | |
| | | * @throws DAOException DAO异常 |
| | | */ |
| | | @Override |
| | | public void updateUserAttrInfoInstance(Map info) throws DAOException { |
| | | public int updateUserAttrInfoInstance(Map info) throws DAOException { |
| | | logger.debug("修改用户属性信息Instance 入参 info : {}",info); |
| | | |
| | | int saveFlag = sqlSessionTemplate.update("userAttrServiceDaoImpl.updateUserAttrInfoInstance",info); |
| | |
| | | if(saveFlag < 1){ |
| | | throw new DAOException(ResponseConstant.RESULT_PARAM_ERROR,"修改用户属性信息Instance数据失败:"+ JSONObject.toJSONString(info)); |
| | | } |
| | | return saveFlag; |
| | | } |
| | | |
| | | /** |