/app/h5/identity 接口参数更改

This commit is contained in:
tianfeng 2025-09-27 18:05:22 +08:00
parent 2027a96422
commit 69515ff39c

View File

@ -2,6 +2,7 @@ package com.red.circle.other.adapter.app.h5;
import com.red.circle.common.business.dto.cmd.AppExtCommand;
import com.red.circle.common.business.dto.cmd.PageUserIdCmd;
import com.red.circle.common.business.dto.cmd.app.AppUserIdCmd;
import com.red.circle.framework.dto.PageResult;
import com.red.circle.framework.web.controller.BaseController;
import com.red.circle.order.inner.endpoint.UserFreightRechargeRecordClient;
@ -54,8 +55,8 @@ public class MemberActiveController extends BaseController {
* 用户身份信息.
*/
@GetMapping("/identity")
public UserIdentityVO getUserIdentity(AppExtCommand cmd) {
return userIdentityService.getUserIdentity(cmd.getReqUserId());
public UserIdentityVO getUserIdentity(AppUserIdCmd cmd) {
return userIdentityService.getUserIdentity(cmd.getUid());
}
/**