邱宇豪
2023-11-21 2c783432245859f3ee745e4e9d8cc98dfa7c0865
hd/pipe/secure/src/main/java/com/thhy/secure/modules/biz/regionInspection/controller/RegionInspectionRecordController.java
@@ -8,6 +8,7 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletResponse;
import java.util.Map;
/**
@@ -98,4 +99,14 @@
      return regionInspectionRecordService.selectAppList(map);
   }
   /**
    * web导出
    * @param map
    * @return
    */
   @PostMapping("export")
   void export(@RequestBody Map map, HttpServletResponse response){
      regionInspectionRecordService.export(map,response);
   }
}