4.18

花费时间 30分钟
代码量 20
搏客量 1篇
学习知识点 获取文章详情
 
//controller
@GetMapping("/detail")
    public Result detail(Integer id){
        Article a = articleService.detail(id);
        return Result.success(a);
    }

//service
 Article detail(Integer id);

//serviceImpl
 @Override
    public Article detail(Integer id) {
        Article a = articleMapper.detail(id);
        return a;
    }

//mapper
@Select("select * from article where id = #{id}")
    Article detail(Integer id);
posted @ 2024-04-18 23:13  徐星凯  阅读(2)  评论(0编辑  收藏  举报