From fee67ca8a0760315047a52fc4101a8f4f80b7a7f Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期一, 11 十一月 2024 15:02:54 +0800
Subject: [PATCH] 1

---
 src/main/java/com/moon/server/controller/data/RasterAnalysisController.java |   14 +++++---------
 1 files changed, 5 insertions(+), 9 deletions(-)

diff --git a/src/main/java/com/moon/server/controller/data/RasterAnalysisController.java b/src/main/java/com/moon/server/controller/data/RasterAnalysisController.java
index 2396ad7..7760150 100644
--- a/src/main/java/com/moon/server/controller/data/RasterAnalysisController.java
+++ b/src/main/java/com/moon/server/controller/data/RasterAnalysisController.java
@@ -7,7 +7,7 @@
 import com.moon.server.helper.StringHelper;
 import com.moon.server.helper.WebHelper;
 import com.moon.server.service.data.RasterAnalysisService;
-import com.moon.server.service.data.SlopAnalysisService;
+import com.moon.server.service.data.SlopeAnalysisService;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiImplicitParam;
 import io.swagger.annotations.ApiImplicitParams;
@@ -21,20 +21,16 @@
 import javax.servlet.http.HttpServletResponse;
 import java.util.*;
 
-/**
- * 鏍呮牸鍒嗘瀽
- * @author WWW
- * @date   2023-08-23
- */
 @Api(tags = "鏁版嵁绠$悊\\鏍呮牸鍒嗘瀽")
 @RestController
+@SuppressWarnings("ALL")
 @RequestMapping("/rasterAnalysis")
 public class RasterAnalysisController extends BaseController {
     @Resource
     RasterAnalysisService rasterService;
 
     @Resource
-    SlopAnalysisService slopAnalysisService;
+    SlopeAnalysisService slopeAnalysisService;
 
     private final static List<Integer> PIXELS = new ArrayList<>(Arrays.asList(1, 2, 4, 8, 16, 32, 64, 128, 256));
 
@@ -159,7 +155,7 @@
     @SysLog()
     @ApiOperation(value = "涓嬭浇鍧″害鍒嗘瀽Excel")
     @ApiImplicitParams({
-            @ApiImplicitParam(name = "wkt", value = "WKT瀛楃涓�", dataType = "String", example = "POLYGON ((56.61 33.94,115.04 33.56,114.09 -7.17,52.22 -6.22,56.61 33.94))")
+            @ApiImplicitParam(name = "wkt", value = "WKT瀛楃涓�", dataType = "String", example = "POLYGON ((-73.093 4.598,-72.494 4.669,-72.951 4.241,-73.093 4.598))")
     })
     @GetMapping(value = "/downloadSlopXls")
     public void downloadSlopXls(String wkt, HttpServletRequest req, HttpServletResponse res) {
@@ -179,7 +175,7 @@
                 return;
             }
 
-            slopAnalysisService.downloadSlopXls(geo, res);
+            slopeAnalysisService.downloadSlopXls(geo, res);
         } catch (Exception ex) {
             WebHelper.writeStr2Page(res, ex.getMessage());
             log.error(ex.getMessage(), ex);

--
Gitblit v1.9.3