获取人员信息
This commit is contained in:
parent
1951e2c3a7
commit
4d06724254
|
@ -230,6 +230,14 @@ public class AppController {
|
||||||
return Result.success().put("data", user);
|
return Result.success().put("data", user);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@RequestMapping(value = "/selectUserInfo", method = RequestMethod.GET)
|
||||||
|
@ApiOperation("获取用户详细信息")
|
||||||
|
@ResponseBody
|
||||||
|
public Result selectUserInfo(Long userId) {
|
||||||
|
UserEntity userEntity = userService.getById(userId);
|
||||||
|
return Result.success().put("data", userEntity);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@RequestMapping(value = "/selectNewApp", method = RequestMethod.GET)
|
@RequestMapping(value = "/selectNewApp", method = RequestMethod.GET)
|
||||||
@ApiOperation("升级检测")
|
@ApiOperation("升级检测")
|
||||||
|
|
Loading…
Reference in New Issue