|
@@ -0,0 +1,13 @@
|
|
|
+package org.jeecg.modules.Index.controller;
|
|
|
+
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+@Api(tags="首页")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/index")
|
|
|
+@Slf4j
|
|
|
+public class IndexController {
|
|
|
+}
|