|
|
@@ -0,0 +1,16 @@
|
|
|
+package com.ylx.order.controller;
|
|
|
+
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+@RestController
|
|
|
+@RequestMapping("/merchant/order")
|
|
|
+@Api(tags = {"商户端订单模块"})
|
|
|
+@Slf4j
|
|
|
+@PreAuthorize("@merchantAuth.isMerchant()")
|
|
|
+public class MerchantOrderController {
|
|
|
+
|
|
|
+}
|