商品服务功能开发
三级分类
导入数据pms_catelog.sql
要实现的功能:查出所有分类以及子分类,以树形结构组装起来
控制器:
/**
* 查出所有分类以及子分类,以树形结构组装起来
*/
@RequestMapping("/list/tree")
public R listWithTree(){
List<CategoryEntity> entities= categoryService.listWithTree();
return R.ok().put("data", entities);
}