| | |
| | | @PostMapping("/base/tStory/updateState/{id}/{state}") |
| | | R updateState1(@PathVariable("id") Integer id, @PathVariable("state") Integer state); |
| | | |
| | | /** |
| | | * 获取用户信息 |
| | | * |
| | | * @return 用户信息 |
| | | */ |
| | | @GetMapping("/base/user/userInfo") |
| | | @ApiOperation(value = "用户详情", tags = {"用户详情"}) |
| | | R<TUser> userInfo(); |
| | | @ApiOperation(value = "用户详情", tags = {"学习端-用户详情"}) |
| | | R<UserPersonalCenterVO> userInfo(); |
| | | @GetMapping("/base/user/userInfoParent") |
| | | @ApiOperation(value = "用户详情", tags = {"家长端-用户详情"}) |
| | | R<TUser> userInfoParent(); |
| | | |
| | | /** |
| | | * 生成积分明细-用于远程调用 |