|
@@ -4,10 +4,7 @@ import com.ruoyi.common.core.web.domain.AjaxResult;
|
|
import com.sooka.sponest.mobile.data.emergency.domain.AppIndexVO;
|
|
import com.sooka.sponest.mobile.data.emergency.domain.AppIndexVO;
|
|
import com.sooka.sponest.mobile.data.emergency.feign.service.RemoteIndexService;
|
|
import com.sooka.sponest.mobile.data.emergency.feign.service.RemoteIndexService;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
@RestController
|
|
@RestController
|
|
@RequestMapping("/AppIndexController")
|
|
@RequestMapping("/AppIndexController")
|
|
@@ -20,4 +17,10 @@ public class AppIndexController {
|
|
public AjaxResult getIndexPageData(@RequestBody AppIndexVO vo){
|
|
public AjaxResult getIndexPageData(@RequestBody AppIndexVO vo){
|
|
return appIndexService.getIndexPageData(vo);
|
|
return appIndexService.getIndexPageData(vo);
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ @GetMapping("/getLateInspectionList")
|
|
|
|
+ public AjaxResult getLateInspectionList(AppIndexVO vo){
|
|
|
|
+ return appIndexService.getLateInspectionList();
|
|
|
|
+ }
|
|
}
|
|
}
|