[fix] 修复远程调用接口错误的问题

pull/445/head
hsdllcw 2024-08-23 10:01:20 +08:00
parent 84570cb6cf
commit dcbb745d59
1 changed files with 1 additions and 1 deletions

View File

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