首页>代码>vue+springboot2整合实现在线考试管理系统>/springboot/src/main/java/com/exam/controller/AnswerController.java
package com.exam.controller;

import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.exam.entity.ApiResult;
import com.exam.serviceimpl.AnswerServiceImpl;
import com.exam.util.ApiResultHandler;
import com.exam.vo.AnswerVO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RestController;


@RestController
public class AnswerController {

    @Autowired
    private AnswerServiceImpl answerService;

    @GetMapping("/answers/{page}/{size}")
    public ApiResult findAllQuestion(@PathVariable("page") Integer page, @PathVariable("size") Integer size){
       Page<AnswerVO> answerVOPage = new Page<>(page,size);
       IPage<AnswerVO> answerVOIPage = answerService.findAll(answerVOPage);
       return ApiResultHandler.buildApiResult(200,"查询所有题库",answerVOIPage);

    }
}
最近下载更多
pangzhihui  LV14 9月15日
樱花味小然子  LV5 7月18日
wonderman  LV5 6月30日
JiangYing009  LV8 4月27日
nyb4613  LV8 4月15日
Boss绝  LV9 3月25日
qqttuu  LV3 3月6日
好的好的  LV8 3月4日
光头强1024  LV7 1月5日
微信网友_6507459064762368  LV2 2023年12月5日
最近浏览更多
citybird  LV4 11月18日
林依晨127  LV2 11月1日
暂无贡献等级
Luis虎子  LV16 9月25日
17558420274  LV16 9月15日
somexi 8月23日
暂无贡献等级
316832598 7月29日
暂无贡献等级
樱花味小然子  LV5 7月18日
Luck_ZDM  LV12 7月2日
yanerkang1  LV2 6月30日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友