Compare commits

..

No commits in common. "916c28a106aa5339438e1bc50e84eab8ea92db25" and "a0b68504a6ea0dd2f53cafca80ec24345d328816" have entirely different histories.

1 changed files with 0 additions and 14 deletions

View File

@ -721,18 +721,4 @@ public class AppUsersCacheController extends BaseController {
}
@RequestMapping(value = "/getUserFace")
@ResponseBody
public Object getUserFace() throws Exception {
Map<String, Object> map = new HashMap<String, Object>();
String errInfo = "success";
PageData pd = new PageData();
pd = this.getPageData();
PageData data = userInfoService.findById(pd);
System.out.println("data = " + data);
map.put("pd", data);
map.put("result", errInfo);
return map;
}
}