forked from integrated_whb/integrated_whb
parent
3ddaa3b2c5
commit
de1350654e
|
@ -721,4 +721,18 @@ 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;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue