1.用户模块添加对外接口

This commit is contained in:
cdf
2024-03-25 18:34:55 +08:00
parent 339dbf1004
commit 522b0b48dd

View File

@@ -84,5 +84,5 @@ public interface UserFeignClient {
HttpResult<List<User>> getUserListByRoleCode(@RequestParam("roleCode") String roleCode);
@GetMapping("/getUserById")
HttpResult<UserVO> getUserById(@RequestParam @Validated String id);
HttpResult<UserVO> getUserById(@RequestParam("id") String id);
}