master
冯凯 2023-11-21 14:22:39 +08:00
parent 555698236d
commit a33429d5c4
1 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,8 @@ public class FirmController {
*/ */
@GetMapping("/by/userId") @GetMapping("/by/userId")
public Result<FirmInfoCache> getFirmInfoByUserId(){ public Result<FirmInfoCache> getFirmInfoByUserId(){
Long userId = SecurityUtils.getUserId();
Long userId = 6L;
FirmInfoCache firmInfoCache=firmService.getFirmInfoByUserId(userId); FirmInfoCache firmInfoCache=firmService.getFirmInfoByUserId(userId);
return Result.success(firmInfoCache); return Result.success(firmInfoCache);
} }