hanfucheng 5 ماه پیش
والد
کامیت
dedc6a4708

+ 2 - 3
src/main/java/com/sooka/sponest/data/emergency/appmin/index/controller/AppIndexController.java

@@ -3,6 +3,7 @@ package com.sooka.sponest.data.emergency.appmin.index.controller;
 import com.ruoyi.common.core.web.domain.AjaxResult;
 import com.sooka.sponest.data.emergency.appmin.index.domain.AppIndexVO;
 import com.sooka.sponest.data.emergency.appmin.index.service.AppIndexService;
+import org.springframework.web.bind.annotation.GetMapping;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RestController;
 
@@ -19,11 +20,9 @@ public class AppIndexController {
     public AjaxResult getIndexPageData(AppIndexVO vo){
         return appIndexService.getIndexPageData(vo);
     }
-    @RequestMapping("getLateInspectionList")
+    @GetMapping("getLateInspectionList")
     public AjaxResult getLateInspectionList(AppIndexVO vo){
         return appIndexService.getLateInspectionList(vo);
     }
 
-
-
 }