|
@@ -13,8 +13,8 @@ import org.springframework.web.bind.annotation.*;
|
|
|
/**
|
|
|
* 品牌组接口
|
|
|
*/
|
|
|
-@RequiredArgsConstructor
|
|
|
@RestController
|
|
|
+@RequiredArgsConstructor
|
|
|
@RequestMapping("/commodityManagement/brand")
|
|
|
public class BrandController extends BaseController {
|
|
|
private final BrandService brandService;
|
|
@@ -25,7 +25,7 @@ public class BrandController extends BaseController {
|
|
|
* @param pageQuery 分页信息
|
|
|
* @return 查询结果
|
|
|
*/
|
|
|
- @GetMapping()
|
|
|
+ @GetMapping("/PageList")
|
|
|
public TableDataInfo<BrandVo> selectPageDiBuList(BrandBo brand, PageQuery pageQuery) {
|
|
|
return brandService.selectPageBrandList(brand, pageQuery);
|
|
|
}
|