Merge remote-tracking branch 'origin/test' into test

This commit is contained in:
Tankaikai
2025-01-14 13:37:46 +08:00
8 changed files with 31 additions and 31 deletions

View File

@@ -208,8 +208,5 @@ public class UserEntity implements Serializable {
private Integer vipType;
public UserEntity getDesensitizationInfo() {
this.setPassword(null);
return this;
}
}

View File

@@ -915,7 +915,7 @@ public class UserServiceImpl extends ServiceImpl<UserDao, UserEntity> implements
}
userInfo.setUpdateTime(DateUtil.date().toString());
baseMapper.updateById(userInfo);
return getResult(userInfo.getDesensitizationInfo());
return getResult(userInfo);
}
@Override
@@ -972,7 +972,7 @@ public class UserServiceImpl extends ServiceImpl<UserDao, UserEntity> implements
if (userEntity != null) {
inviteService.saveBody(userInfo.getUserId(), userEntity);
}
return getResult(userInfo.getDesensitizationInfo());
return getResult(userInfo);
}
@Override