add remote firmInfo

master
冯凯 2023-11-22 13:52:08 +08:00
parent 386d481cb1
commit dbe69abb5e
1 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,8 @@ public class FirmInfoController {
Long userId = SecurityUtils.getUserId();//获取当前登录人的userId
log.info("当前登录人是:"+userId);
FirmInfoCache firmInfoCache=firmService.getFirmInfoByUserId(userId);
FirmInfoCache firmInfoCache=firmService.getFirmInfoByUserId(1L);
return Result.success(firmInfoCache);
}
}