|
@@ -0,0 +1,22 @@
|
|
|
+package com.caimei365.commodity.controller;
|
|
|
+
|
|
|
+import com.caimei365.commodity.service.ShopService;
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import lombok.RequiredArgsConstructor;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Description
|
|
|
+ *
|
|
|
+ * @author : Charles
|
|
|
+ * @date : 2021/4/16
|
|
|
+ */
|
|
|
+@Api(tags="供应商商品API")
|
|
|
+@RestController
|
|
|
+@RequiredArgsConstructor
|
|
|
+@RequestMapping("/commodity/shop")
|
|
|
+public class ProductShopApi {
|
|
|
+ private final ShopService shopService;
|
|
|
+
|
|
|
+}
|