|
@@ -0,0 +1,18 @@
|
|
1
|
+package com.community.huiju.controller;
|
|
2
|
+
|
|
3
|
+import io.swagger.annotations.Api;
|
|
4
|
+import org.springframework.cloud.context.config.annotation.RefreshScope;
|
|
5
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
6
|
+import org.springframework.web.bind.annotation.RestController;
|
|
7
|
+
|
|
8
|
+/**
|
|
9
|
+ * @author FXF
|
|
10
|
+ * @date 2018-10-22
|
|
11
|
+ */
|
|
12
|
+@RestController
|
|
13
|
+@RefreshScope
|
|
14
|
+@RequestMapping("/")
|
|
15
|
+@Api("app端消息相关的API")
|
|
16
|
+public class MessageController {
|
|
17
|
+
|
|
18
|
+}
|