Commit 8e6d2e7b authored by hezhen's avatar hezhen

123

parent 4a570bf1
...@@ -64,11 +64,16 @@ public class UserBiz { ...@@ -64,11 +64,16 @@ public class UserBiz {
if(mgt == null){ if(mgt == null){
result = "系统错误"; result = "系统错误";
}else{ }else{
Map<String,Object>params = new HashMap<String,Object>(); json.put("password",mgt.getPassword());
Map<String,Object> params = new HashMap<String,Object>();
params.put("userId",mgt.getUserId());
json.put("data",params);
result = json.toJSONString();
/*Map<String,Object>params = new HashMap<String,Object>();
params.put("userId",mgt.getUserId()); params.put("userId",mgt.getUserId());
params.put("telephone",mgt.getPhone()); params.put("telephone",mgt.getPhone());
params.put("password",mgt.getPassword()); params.put("password",mgt.getPassword());
// result = this.login(params); result = this.login(params);*/
} }
}else{ }else{
json.put("password",map.get("password").toString()); json.put("password",map.get("password").toString());
......
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