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();