From eb40365c9cffb2269fd3cbd31b050c33455bc84a Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 13 十一月 2024 17:44:08 +0800 Subject: [PATCH] 1 --- src/main/java/com/moon/server/entity/shujian/ImageResultEntity.java | 29 +++++++---------------------- 1 files changed, 7 insertions(+), 22 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..d201f90 100644 --- a/src/main/java/com/moon/server/entity/shujian/ImageResultEntity.java +++ b/src/main/java/com/moon/server/entity/shujian/ImageResultEntity.java @@ -3,11 +3,6 @@ import java.util.ArrayList; import java.util.List; -/** - * 鏁扮畝.褰卞儚缁撴灉绫� - * @author WWW - * @date 2023-09-13 - */ @SuppressWarnings("AlibabaLowerCamelCaseVariableNaming") public class ImageResultEntity { public ImageResultEntity() { @@ -43,18 +38,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 +80,7 @@ } } - public class Image { - public Image() { - } - + public static class Image { private Integer layer_id; private Double resolution; @@ -161,7 +149,7 @@ private String data_update_time; - private Integer priority; + private Long priority; private Integer data_update_user; @@ -443,11 +431,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 +472,7 @@ } } - public class BandInfo { - public BandInfo() { - } - + public static class BandInfo { private Double max; private Integer nodata; -- Gitblit v1.9.3