新增退出时机表,完成投资报告页面接口

master
xiaoCJ 1 year ago
parent f1462810ce
commit 19be8377e4

@ -31,8 +31,6 @@ import java.util.List;
@RequestMapping("/stu/topics")
@Api(tags = "学生端--答题视频相关接口")
public class TopicController {
@Autowired
private TopicsMapper topicsMapper;
@Autowired
private TopicService topicService;
@Autowired

@ -106,7 +106,7 @@ public class UserController {
String newUUID = IdUtil.simpleUUID();
if (user != null) {
Flow flow = flowMapper.selectByPrimaryKey(user.getUserid());
Map<String, Object> map = getStringObjectMap(access_token, un, dis, newUUID, flow.getFlowId());
Map<String, Object> map = getStringObjectMap(access_token, un, dis, flow.getUserid(), flow.getFlowId());
user.setAccessToken(access_token);
userMapper.updateByPrimaryKey(user);
return new ResultEntity(HttpStatus.OK, map);

Loading…
Cancel
Save