| | |
| | | String fileLink= COSManager.getInstance().uploadFile(inputStream, filePath).getUrl();
|
| | |
|
| | | userInfo.setPortrait(fileLink);
|
| | | userInfoMapper.updateByPrimaryKey(userInfo);
|
| | | userInfoMapper.updateByPrimaryKeySelective(userInfo);
|
| | | }
|
| | |
|
| | |
|
| | |
| | | throw new UserInfoException(1, "用户不存在");
|
| | | }
|
| | |
|
| | | UserInfo updateInfo = new UserInfo();
|
| | | updateInfo.setId(userInfo.getId());
|
| | | updateInfo.setNickName(nickName);
|
| | | userInfoMapper.updateByPrimaryKeySelective(updateInfo);
|
| | | userInfo.setNickName(nickName);
|
| | | userInfoMapper.updateByPrimaryKeySelective(userInfo);
|
| | | }
|
| | | }
|