feat(用户): 用户身份信息接口路径修改

This commit is contained in:
tianfeng 2025-09-05 11:08:42 +08:00
parent dd474da547
commit e1b38d4815

View File

@ -41,9 +41,9 @@ public class MemberActiveController extends BaseController {
/** /**
* 用户身份信息. * 用户身份信息.
*/ */
@GetMapping("{userId}/identity") @GetMapping("/identity")
public UserIdentityVO getUserIdentity(@PathVariable("userId") Long userId) { public UserIdentityVO getUserIdentity(AppExtCommand cmd) {
return userIdentityService.getUserIdentity(userId); return userIdentityService.getUserIdentity(cmd.getReqUserId());
} }
} }