|
|
@@ -0,0 +1,18 @@
|
|
|
+package com.zsElectric.boot.business.controller.applet;
|
|
|
+
|
|
|
+import com.zsElectric.boot.business.service.RechargeLevelService;
|
|
|
+import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
+import lombok.RequiredArgsConstructor;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+@Tag(name = "订单相关接口")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/applet/v1/order")
|
|
|
+@RequiredArgsConstructor
|
|
|
+public class AppletOrderController {
|
|
|
+
|
|
|
+ private final RechargeLevelService rechargeLevelService;
|
|
|
+
|
|
|
+
|
|
|
+}
|