| | |
| | | |
| | | @FeignClient(contextId = "studyClient", value = ServiceNameConstants.STUDY_SERVICE, fallbackFactory = StudyFallbackFactory.class) |
| | | public interface StudyClient { |
| | | |
| | | @PostMapping("/base/study/recordManagement/{id}") |
| | | R<StudyRecordResultVO> recordManagement(@PathVariable("id")Integer id); |
| | | |
| | | @PostMapping("/base/user/getUserById/{id}") |
| | | R<TUser> getUserById(@PathVariable("id") Integer id); |
| | |
| | | @ApiOperation(value = "用户积分变动", tags = {"用户积分变动"}) |
| | | R<Boolean> exchangeIntegral1(@RequestParam("integral") Integer integral, @RequestParam("method") String method); |
| | | |
| | | |
| | | @GetMapping("/base/study/lookVideo") |
| | | @ApiOperation(value = "家长重置观看操作视频", tags = {"家长重置观看操作视频"}) |
| | | R<Boolean> resetLookVideo(); |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | } |