问答中心 跳转回填提问和回答问题

This commit is contained in:
gaojiabao
2023-04-11 13:09:58 +08:00
parent 96812f00f1
commit 54e0ac3ce6
@@ -318,20 +318,18 @@ public class AskQuestionsController extends BaseController<AskQuestions> {
}
@PostMapping("/jump")
public ResponseMessage jump(String standId ,String userId){
if(StringUtils.isNotBlank(standId) && StringUtils.isNotBlank(userId)){
public ResponseMessage jump(String standId ,String userId) {
if (StringUtils.isNotBlank(standId) && StringUtils.isNotBlank(userId)) {
QueryWrapper<AskQuestions> objectQueryWrapper = new QueryWrapper<>();
objectQueryWrapper.eq("STANDARD_ID",standId);
objectQueryWrapper.eq("questioner",userId);
objectQueryWrapper.eq("STANDARD_ID", standId);
objectQueryWrapper.eq("questioner", userId);
List<AskQuestions> list = askQuestionsService.list(objectQueryWrapper);
if(!list.isEmpty()){
if (!list.isEmpty()) {
//提问
return Result.success("myQue");
}else {
//回答
return askQuestionsService.selectAskReply("myAns");
}
}
return Result.error();
//回答
return askQuestionsService.selectAskReply("myAns");
}
}