From 2661f886430eb0e867cd89de7db62116f22c7b6b Mon Sep 17 00:00:00 2001
From: 13693261870 <252740454@qq.com>
Date: 星期四, 14 九月 2023 09:59:55 +0800
Subject: [PATCH] 修改影像图层的拉伸方式功能

---
 src/main/java/com/moon/server/entity/shujian/ImageResultEntity.java |   24 +++++++-----------------
 1 files changed, 7 insertions(+), 17 deletions(-)

diff --git a/src/main/java/com/moon/server/entity/shujian/ImageResultEntity.java b/src/main/java/com/moon/server/entity/shujian/ImageResultEntity.java
index adb6d6f..eeeb7a9 100644
--- a/src/main/java/com/moon/server/entity/shujian/ImageResultEntity.java
+++ b/src/main/java/com/moon/server/entity/shujian/ImageResultEntity.java
@@ -43,18 +43,14 @@
         this.result = result;
     }
 
-    public class Result {
-        public Result() {
-            this.item_list = new ArrayList<>();
-        }
-
+    public static class Result {
         private Integer page_count;
 
         private Integer page_num;
 
         private Integer total_count;
 
-        private List<Image> item_list;
+        private List<Image> item_list = new ArrayList<>();
 
         public Integer getPage_count() {
             return page_count;
@@ -89,10 +85,7 @@
         }
     }
 
-    public class Image {
-        public Image() {
-        }
-
+    public static class Image {
         private Integer layer_id;
 
         private Double resolution;
@@ -161,7 +154,7 @@
 
         private String data_update_time;
 
-        private Integer priority;
+        private Long priority;
 
         private Integer data_update_user;
 
@@ -443,11 +436,11 @@
             this.data_update_time = data_update_time;
         }
 
-        public Integer getPriority() {
+        public Long getPriority() {
             return priority;
         }
 
-        public void setPriority(Integer priority) {
+        public void setPriority(Long priority) {
             this.priority = priority;
         }
 
@@ -484,10 +477,7 @@
         }
     }
 
-    public class BandInfo {
-        public BandInfo() {
-        }
-
+    public static class BandInfo {
         private Double max;
 
         private Integer nodata;

--
Gitblit v1.9.3