|
@@ -1,5 +1,6 @@
|
|
|
package com.gyee.consumer.controller.monitor;
|
|
|
|
|
|
+import com.gyee.common.config.R;
|
|
|
import com.gyee.common.domain.AjaxResult;
|
|
|
import com.gyee.consumer.service.monitor.GenreSetPushService;
|
|
|
import io.swagger.annotations.Api;
|
|
@@ -11,6 +12,7 @@ import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
import java.util.HashMap;
|
|
|
+import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
@Slf4j
|
|
@@ -225,4 +227,12 @@ public class GenreSetPushController {
|
|
|
return ajax;
|
|
|
}
|
|
|
|
|
|
+ @GetMapping(value = "/homeSuspensionWindows")
|
|
|
+ @ApiOperation(value = "首页弹窗", notes = "首页弹窗")
|
|
|
+ @ResponseBody
|
|
|
+ public AjaxResult wtls() {
|
|
|
+ AjaxResult ajax= genreSetPushService.hso();
|
|
|
+ return ajax;
|
|
|
+ }
|
|
|
+
|
|
|
}
|