|
|
@@ -0,0 +1,22 @@
|
|
|
+package com.yami.shop.platform.controller;
|
|
|
+
|
|
|
+import com.yami.shop.service.OrderItemService;
|
|
|
+import com.yami.shop.service.OrderService;
|
|
|
+import com.yami.shop.service.hb.IHBOrderService;
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
+import lombok.extern.log4j.Log4j2;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+@RestController
|
|
|
+@RequestMapping("/sm/order")
|
|
|
+@AllArgsConstructor
|
|
|
+@Log4j2
|
|
|
+public class SMOrderController {
|
|
|
+
|
|
|
+ private final OrderService orderService;
|
|
|
+ private final OrderItemService orderItemService;
|
|
|
+ private final IHBOrderService hbOrderService;
|
|
|
+
|
|
|
+
|
|
|
+}
|