Commit 77da15f3 by lyy

Merge remote-tracking branch 'origin/dev-sx' into dev-sx

parents e4a25de8 5dfc646e
...@@ -58,7 +58,6 @@ public class ServiceHPXSUser extends ServiceBase { ...@@ -58,7 +58,6 @@ public class ServiceHPXSUser extends ServiceBase {
return outInfo; return outInfo;
} }
/** /**
* 获取用户信息 * 获取用户信息
* *
...@@ -74,7 +73,7 @@ public class ServiceHPXSUser extends ServiceBase { ...@@ -74,7 +73,7 @@ public class ServiceHPXSUser extends ServiceBase {
if (StringUtils.isNotEmpty(loginName)) { if (StringUtils.isNotEmpty(loginName)) {
Map map = new HashMap(); Map map = new HashMap();
map.put("loginName", loginName); map.put("loginName", loginName);
List<User> users = dao.query("HGXSUser.query", map); List<User> users = dao.query("HPXSUser.query", map);
if (users != null && users.size() > 0) { if (users != null && users.size() > 0) {
status = 1; status = 1;
msg = "用户存在!"; msg = "用户存在!";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment