Administrator
5 days ago 81d15b609a4588a4a36e4e0c30338f73e0a53da0
src/main/java/cc/mrbird/febs/ai/controller/productCategory/ApiProductCategoryController.java
@@ -36,7 +36,18 @@
    }
    @ApiOperation(value = "分类列表", notes = "分类列表")
    @ApiOperation(value = "全部父级分类", notes = "全部父级分类")
    @ApiResponses({
            @ApiResponse(code = 200, message = "success", response = ApiProductCategoryVo.class)
    })
    @GetMapping(value = "/allList")
    public FebsResponse allList() {
        return aiProductCategoryService.allList();
    }
    @ApiOperation(value = "子分类列表", notes = "子分类列表")
    @ApiResponses({
            @ApiResponse(code = 200, message = "success", response = ApiProductCategoryVo.class)
    })