perf(X-Pack): 根据账号获取用户信息接口

This commit is contained in:
fit2cloud-chenyw
2025-02-19 10:58:38 +08:00
committed by xuwei-fit2cloud
parent a72f65a787
commit b4b33e67cf

View File

@@ -163,9 +163,9 @@ public interface UserApi {
@GetMapping("/firstEchelon/{limit}")
List<Long> firstEchelon(@PathVariable("limit") Long limit);
@Hidden
@GetMapping("/queryByAccount")
CurUserVO queryByAccount(String account);
@Operation(summary = "根据账号查询用户")
@GetMapping("/queryByAccount/{account}")
CurUserVO queryByAccount(@PathVariable("account") String account);
@Hidden
@PostMapping("/all")