From 2eb13baa57ddf6da38bba134f6c90025f5ac4396 Mon Sep 17 00:00:00 2001 From: EricsHu <hrr145632> Date: 星期二, 05 九月 2023 11:19:21 +0800 Subject: [PATCH] 退出登录null --- src/main/java/com/qxueyou/scc/sys/action/LoginController.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/qxueyou/scc/sys/action/LoginController.java b/src/main/java/com/qxueyou/scc/sys/action/LoginController.java index d361310..a763aac 100644 --- a/src/main/java/com/qxueyou/scc/sys/action/LoginController.java +++ b/src/main/java/com/qxueyou/scc/sys/action/LoginController.java @@ -420,7 +420,7 @@ hql = "from User where deleteFlag is false and email = ?"; params = CollectionUtils.newList(account); }else if("zhyly".equals(logType)){ - hql = "from User where deleteFlag is false and mobilePhone = ? and creator != '绠$悊鍛�'"; + hql = "from User where deleteFlag is false and mobilePhone = ?"; params = CollectionUtils.newList(account); }else{ if(StringUtils.isEmpty(password)) { @@ -569,7 +569,7 @@ @RequestMapping(value = "release", method = RequestMethod.GET) public String release(HttpServletRequest httpRequest, HttpServletResponse response) { doRelease(httpRequest, response); - return "redirect:/web/admin/index.html#login"; + return null; } /** -- Gitblit v1.8.0