|
@@ -1,6 +1,7 @@
|
|
|
package com.sooka.sponest.mobile.data.emergency.controller;
|
|
|
|
|
|
import com.ruoyi.common.core.web.domain.AjaxResult;
|
|
|
+import com.sooka.sponest.mobile.data.emergency.domain.AppXunjianInspectionVO;
|
|
|
import com.sooka.sponest.mobile.data.emergency.domain.AppXunjianVO;
|
|
|
import com.sooka.sponest.mobile.data.emergency.feign.service.RemoteXunjianService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -19,4 +20,34 @@ public class AppXunjianController {
|
|
|
public AjaxResult getXqzggzs2(@RequestBody AppXunjianVO vo) {
|
|
|
return xunjianService.getXqzggzs2(vo);
|
|
|
}
|
|
|
+
|
|
|
+ @PostMapping("/getXunjianczData")
|
|
|
+ public AjaxResult getXunjianczData(@RequestBody AppXunjianVO vo) {
|
|
|
+ return xunjianService.getXunjianczData(vo);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/getItemsLast")
|
|
|
+ public AjaxResult getItemsLast(@RequestBody AppXunjianVO vo) {
|
|
|
+ return xunjianService.getItemsLast(vo);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/getXunjianItems")
|
|
|
+ public AjaxResult getXunjianItems(@RequestBody AppXunjianVO vo) {
|
|
|
+ return xunjianService.getXunjianItems(vo);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/saveXunjianItems")
|
|
|
+ public AjaxResult saveXunjianItems(@RequestBody AppXunjianVO vo) {
|
|
|
+ return xunjianService.saveXunjianItems(vo);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/getBusInspectionIsRiskByEnterpriseCount")
|
|
|
+ public AjaxResult getBusInspectionIsRiskByEnterpriseCount(@RequestBody AppXunjianVO vo) {
|
|
|
+ return xunjianService.getBusInspectionIsRiskByEnterpriseCount(vo);
|
|
|
+ }
|
|
|
+
|
|
|
+ @PostMapping("/changeInspection")
|
|
|
+ public AjaxResult changeInspection(@RequestBody AppXunjianInspectionVO vo) {
|
|
|
+ return xunjianService.changeInspection(vo);
|
|
|
+ }
|
|
|
}
|