|
@@ -2,7 +2,12 @@ package com.gyee.frame.controller.comm;
|
|
|
|
|
|
|
|
|
|
import com.gyee.frame.common.domain.AjaxResult;
|
|
import com.gyee.frame.common.domain.AjaxResult;
|
|
|
|
+import io.swagger.annotations.ApiImplicitParam;
|
|
|
|
+import io.swagger.annotations.ApiImplicitParams;
|
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
+import org.springframework.web.bind.annotation.ResponseBody;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
|
|
@@ -11,6 +16,13 @@ import org.springframework.web.bind.annotation.RestController;
|
|
public class FullPushMsgController {
|
|
public class FullPushMsgController {
|
|
|
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
|
+ * 推送消息
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("/pushmsg")
|
|
|
|
+ @ResponseBody
|
|
|
|
+ @ApiOperation(value = "推送全场重要信息", notes = "推送全场重要信息")
|
|
public AjaxResult pushmsg () {
|
|
public AjaxResult pushmsg () {
|
|
|
|
|
|
|
|
|