|
@@ -4,6 +4,7 @@ package com.usky.fire.controller.web;
|
|
|
import com.usky.common.core.bean.ApiResult;
|
|
import com.usky.common.core.bean.ApiResult;
|
|
|
import com.usky.fire.service.BscEnterpriseScreenService;
|
|
import com.usky.fire.service.BscEnterpriseScreenService;
|
|
|
import com.usky.fire.service.vo.DataVo;
|
|
import com.usky.fire.service.vo.DataVo;
|
|
|
|
|
+import com.usky.fire.service.vo.ServiceGuidanceVO;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
@@ -63,5 +64,14 @@ public class BscEnterpriseScreenController {
|
|
|
return ApiResult.success(bscEnterpriseScreenService.Alarmlist());
|
|
return ApiResult.success(bscEnterpriseScreenService.Alarmlist());
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 大屏服务指导数据获取
|
|
|
|
|
+ * @return
|
|
|
|
|
+ */
|
|
|
|
|
+ @GetMapping("serviceGuidance")
|
|
|
|
|
+ public ApiResult<ServiceGuidanceVO> serviceGuidance() {
|
|
|
|
|
+ return ApiResult.success(bscEnterpriseScreenService.serviceGuidance());
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
|
|
|