派生自 projectDept/qhighschool

yn147
2023-03-28 4b65c13777976e9f339120396d9b8efd26194b2d
门户登录
1个文件已修改
2 ■■■ 已修改文件
src/main/java/com/qxueyou/scc/sys/action/LoginController.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/qxueyou/scc/sys/action/LoginController.java
@@ -312,7 +312,7 @@
            if(StringUtils.isEmpty(password)) {
                return new Result(false, "用户密码不能为空");
            }
            hql = "from User where deleteFlag is false and mobilePhone = ? and password = ? ";
            hql = "from User where deleteFlag is false and account = ? and password = ? ";
            params =  CollectionUtils.newList(account,password);
        }