|
|
@@ -0,0 +1,13 @@
|
|
|
+package com.zsElectric.boot.business.controller.applet;
|
|
|
+
|
|
|
+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/home")
|
|
|
+@RequiredArgsConstructor
|
|
|
+public class AppletHomeController {
|
|
|
+}
|