| | |
| | | import com.java110.core.base.dao.BaseServiceDao; |
| | | import com.java110.user.dao.IUserAttrServiceDao; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import com.java110.core.log.LoggerFactory; |
| | | import org.springframework.stereotype.Service; |
| | | import org.springframework.transaction.annotation.Transactional; |
| | | |
| | |
| | | * @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; |
| | | } |
| | | |
| | | /** |