4.18
//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);