diff --git a/muyu-modules/muyu-product/muyu-product-server/src/main/java/com/muyu/product/controller/ProductBrandController.java b/muyu-modules/muyu-product/muyu-product-server/src/main/java/com/muyu/product/controller/ProductBrandController.java new file mode 100644 index 0000000..64c76c2 --- /dev/null +++ b/muyu-modules/muyu-product/muyu-product-server/src/main/java/com/muyu/product/controller/ProductBrandController.java @@ -0,0 +1,16 @@ +package com.muyu.product.controller; + +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +/** + * 商品品牌Controller + * @Author: wangxinyuan + * @Date: 2024/3/26 20:30 + */ +@RestController +@RequestMapping("/brand") +public class ProductBrandController { + + +}