|
@@ -0,0 +1,17 @@
|
|
|
+package com.diagbot.web;
|
|
|
+
|
|
|
+import io.swagger.annotations.Api;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @Description: 静态信息
|
|
|
+ * @author: gaodm
|
|
|
+ * @time: 2020/8/14 16:19
|
|
|
+ */
|
|
|
+@RequestMapping("/static")
|
|
|
+@RestController
|
|
|
+@SuppressWarnings("unchecked")
|
|
|
+@Api(value = "静态信息API", tags = { "静态信息API" })
|
|
|
+public class StaticInfoController {
|
|
|
+}
|