| | |
| | | package com.ruoyi.study.controller; |
| | | import java.util.Date; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | |
| | | import io.swagger.annotations.ApiImplicitParam; |
| | | import io.swagger.annotations.ApiImplicitParams; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.jetbrains.annotations.TestOnly; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.util.StringUtils; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | @Resource |
| | | private ITUserPresentRecordService userPresentRecordService; |
| | | |
| | | @PostMapping("/testAddData") |
| | | @ApiOperation(value = "测试分片", tags = {"测试分片"}) |
| | | public R<Object> testAddData() { |
| | | TIntegralRecord tIntegralRecord = new TIntegralRecord(); |
| | | tIntegralRecord.setIntegral("1"); |
| | | tIntegralRecord.setMethod("1"); |
| | | tIntegralRecord.setUserId(23); |
| | | tIntegralRecord.setGameId(1); |
| | | tIntegralRecord.setGameDifficulty(1); |
| | | tIntegralRecord.setStoryId(1); |
| | | tIntegralRecord.setStoryType(1); |
| | | integralRecordService.save(tIntegralRecord); |
| | | TGameRecord tGameRecord = new TGameRecord(); |
| | | tGameRecord.setUserId(33); |
| | | tGameRecord.setAccuracy(0); |
| | | tGameRecord.setGameName(""); |
| | | tGameRecord.setUseTime(0); |
| | | tGameRecord.setUseTime1(""); |
| | | tGameRecord.setGameId(0); |
| | | tGameRecord.setGameDifficulty(0); |
| | | tGameRecord.setTime(""); |
| | | tGameRecord.setDisabled(false); |
| | | tGameRecord.setCreateBy(""); |
| | | tGameRecord.setCreateTime(new Date()); |
| | | tGameRecord.setUpdateBy(""); |
| | | tGameRecord.setUpdateTime(new Date()); |
| | | gameRecordService.save(tGameRecord); |
| | | TSubjectRecord tSubjectRecord = new TSubjectRecord(); |
| | | tSubjectRecord.setUserId(22); |
| | | tSubjectRecord.setWeek(0); |
| | | tSubjectRecord.setDay(0); |
| | | tSubjectRecord.setBeforeSubject(""); |
| | | tSubjectRecord.setType(0); |
| | | tSubjectRecord.setCompleteSubject(""); |
| | | tSubjectRecord.setAnswerNumber(0); |
| | | tSubjectRecord.setCorrectNumber(0); |
| | | tSubjectRecord.setDisabled(false); |
| | | tSubjectRecord.setCreateBy(""); |
| | | tSubjectRecord.setCreateTime(new Date()); |
| | | tSubjectRecord.setUpdateBy(""); |
| | | tSubjectRecord.setUpdateTime(new Date()); |
| | | subjectRecordService.save(tSubjectRecord); |
| | | TUserPresentRecord tUserPresentRecord = new TUserPresentRecord(); |
| | | tUserPresentRecord.setUserId(44); |
| | | tUserPresentRecord.setPresentTime(new Date()); |
| | | tUserPresentRecord.setIsDelete(0); |
| | | userPresentRecordService.save(tUserPresentRecord); |
| | | |
| | | TUserStudyRecord tUserStudyRecord = new TUserStudyRecord(); |
| | | tUserStudyRecord.setUserId(17); |
| | | tUserStudyRecord.setQuarter(0); |
| | | tUserStudyRecord.setWeek(0); |
| | | tUserStudyRecord.setDay(0); |
| | | tUserStudyRecord.setObtainedIntegral(0); |
| | | tUserStudyRecord.setType(0); |
| | | tUserStudyRecord.setStudyType(0); |
| | | tUserStudyRecord.setStoryId(0); |
| | | studyRecordService.save(tUserStudyRecord); |
| | | |
| | | return R.ok(); |
| | | } |
| | | @PostMapping("/storyList") |
| | | // @ApiOperation(value = "配置学习类型选择故事", tags = {"题目管理"}) |
| | | public R<PageInfo<TStory>> storyList(@RequestBody ChoiceStory query) { |
| | |
| | | @GetMapping("/getIntegral") |
| | | @ApiOperation(value = "获取剩余积分", tags = {"家长端-获取剩余积分"}) |
| | | public R<Integer> getIntegral() { |
| | | if (tokenService.getLoginUser1() == null){ |
| | | return R.tokenError("登录失效"); |
| | | } |
| | | Integer userId = tokenService.getLoginUser1().getUserid(); |
| | | return R.ok(userService.getById(userId).getIntegral()); |
| | | } |