yangys
2025-09-07 d34d3c83500d5a68715a280eee3d930c88291d71
blade-service/blade-mdm/src/main/java/org/springblade/mdm/commons/service/UserCommonService.java
@@ -28,6 +28,9 @@
    * @return
    */
   public String getUserNameById(Long userId){
      if(userId == null){
         return null;
      }
      R<User> programmerResult = userClient.userInfoById(userId);
      if(programmerResult.isSuccess()) {
         return programmerResult.getData().getName();