|
|
|
@ -85,10 +85,18 @@ public class AdminAccountCloseController extends BaseController { |
|
|
|
public JSONObject getCloseAccountInfo(HttpServletRequest request){ |
|
|
|
String userIsli=request.getParameter("user_isli"); |
|
|
|
// 返回用户的信息
|
|
|
|
String msg="成功"; |
|
|
|
int code=200; |
|
|
|
Map usinfo = userService.getUserInfo(userIsli); |
|
|
|
jsonObject.put("data",usinfo); |
|
|
|
jsonObject.put("code",200); |
|
|
|
jsonObject.put("msg","成功"); |
|
|
|
if(usinfo==null){ |
|
|
|
msg="记录不存在"; |
|
|
|
code=400; |
|
|
|
}else{ |
|
|
|
jsonObject.put("data",usinfo); |
|
|
|
} |
|
|
|
|
|
|
|
jsonObject.put("code",code); |
|
|
|
jsonObject.put("msg",msg); |
|
|
|
return jsonObject; |
|
|
|
} |
|
|
|
|
|
|
|
|