diff --git a/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/h5/MemberActiveController.java b/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/h5/MemberActiveController.java index 7685ad32..7fe1e953 100644 --- a/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/h5/MemberActiveController.java +++ b/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/h5/MemberActiveController.java @@ -41,9 +41,9 @@ public class MemberActiveController extends BaseController { /** * 用户身份信息. */ - @GetMapping("{userId}/identity") - public UserIdentityVO getUserIdentity(@PathVariable("userId") Long userId) { - return userIdentityService.getUserIdentity(userId); + @GetMapping("/identity") + public UserIdentityVO getUserIdentity(AppExtCommand cmd) { + return userIdentityService.getUserIdentity(cmd.getReqUserId()); } }