Commit 69d15192 authored by libin's avatar libin

applet登录注册

parent 42502537
...@@ -663,7 +663,11 @@ public class AppPermissionService { ...@@ -663,7 +663,11 @@ public class AppPermissionService {
* @return * @return
*/ */
public JSONObject appletLoginByUserId(Integer uid) { public JSONObject appletLoginByUserId(Integer uid) {
return autoLogin(uid,null,null,null); JSONObject data = autoLogin(uid, null, null, null);
if (data!=null){
return JsonResultUtil.createSuccessResultWithObj(data);
}
return JsonResultUtil.createFailedResult(ResultCode.NOTEXIST_CODE, "用户不存在");
} }
......
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