[fix] 修复远程查询用户信息的前缀缺失

pull/445/head
hsdllcw 2024-08-24 16:04:57 +08:00
parent 1204c39917
commit db1f8a49e3
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ public interface RemoteUserService
* @param source * @param source
* @return * @return
*/ */
@GetMapping("/detail/{userId}") @GetMapping("/user/detail/{userId}")
public R<LoginUser> infoById(@PathVariable("userId") Long userId, @RequestHeader(SecurityConstants.FROM_SOURCE) String source); public R<LoginUser> infoById(@PathVariable("userId") Long userId, @RequestHeader(SecurityConstants.FROM_SOURCE) String source);
/** /**
* *