forked from integrated_whb/integrated_whb
Compare commits
2 Commits
a0b68504a6
...
916c28a106
Author | SHA1 | Date |
---|---|---|
xiepeng | 916c28a106 | |
xiepeng | 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