From d742978f114e5119b95b80e565110f287bbd8178 Mon Sep 17 00:00:00 2001 From: Liu Rui Date: Thu, 17 Oct 2024 09:12:47 +0800 Subject: [PATCH] =?UTF-8?q?feat-UserInfoController-=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E7=94=A8=E9=82=AE=E7=AE=B1=E6=9F=A5=E8=AF=A2=E4=BA=BA=E5=91=98?= =?UTF-8?q?=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../muyun/platform/controller/UserInfoController.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/muyun-platform/src/main/java/net/ximatai/muyun/platform/controller/UserInfoController.java b/muyun-platform/src/main/java/net/ximatai/muyun/platform/controller/UserInfoController.java index 0f0dc53..82d1294 100644 --- a/muyun-platform/src/main/java/net/ximatai/muyun/platform/controller/UserInfoController.java +++ b/muyun-platform/src/main/java/net/ximatai/muyun/platform/controller/UserInfoController.java @@ -219,7 +219,12 @@ public String enableUser(@PathParam("id") String id) { @Override public List queryItemList() { - return List.of(QueryItem.of("v_name").setSymbolType(QueryItem.SymbolType.LIKE), QueryItem.of("v_phone").setSymbolType(QueryItem.SymbolType.LIKE), QueryItem.of("v_username").setSymbolType(QueryItem.SymbolType.LIKE)); + return List.of( + QueryItem.of("v_email"), + QueryItem.of("v_name").setSymbolType(QueryItem.SymbolType.LIKE), + QueryItem.of("v_phone").setSymbolType(QueryItem.SymbolType.LIKE), + QueryItem.of("v_username").setSymbolType(QueryItem.SymbolType.LIKE) + ); } @GET