From 990a7fc331f833672629e83981ae5716590ceec2 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期五, 08 九月 2023 12:36:55 +0800 Subject: [PATCH] 修改数简-创建服务接口 --- src/main/java/com/moon/server/entity/shujian/CreateLayerEntity.java | 84 +++--------------------------------------- 1 files changed, 6 insertions(+), 78 deletions(-) diff --git a/src/main/java/com/moon/server/entity/shujian/CreateLayerEntity.java b/src/main/java/com/moon/server/entity/shujian/CreateLayerEntity.java index 3079d70..d533bee 100644 --- a/src/main/java/com/moon/server/entity/shujian/CreateLayerEntity.java +++ b/src/main/java/com/moon/server/entity/shujian/CreateLayerEntity.java @@ -28,11 +28,6 @@ private List<ImagePathList> image_path_list; /** - * 褰卞儚鍒楄〃 - */ - private List<ImageList> image_list; - - /** * 閲戝瓧濉旈厤缃� */ private ImageOvr image_ovr; @@ -46,7 +41,6 @@ create_service = 0; layer = new Layer(); image_ovr = new ImageOvr(); - image_list = new ArrayList<>(); image_path_list = new ArrayList<>(); } @@ -64,14 +58,6 @@ public void setImage_path_list(List<ImagePathList> image_path_list) { this.image_path_list = image_path_list; - } - - public List<ImageList> getImage_list() { - return image_list; - } - - public void setImage_list(List<ImageList> image_list) { - this.image_list = image_list; } public ImageOvr getImage_ovr() { @@ -165,12 +151,14 @@ private Integer boundary_cal_mode; public Layer() { + projection = "ESRI:104903"; trans_color = "-1,-1,-1"; + tile_rgb = "1,2,3"; end_scale = 1.0; - start_scale = 1000000000.0; + start_scale = 1048576000.0; stats_type = 1; enhance_type = 0; - enhance_factor = 0.02; + enhance_factor = null; boundary_cal_mode = 0; } @@ -323,7 +311,8 @@ public ImagePathList() { datasource = "Local"; - recursion = 0; + recursion = 1; + filter = new ArrayList<>(); } public String getDatasource() { @@ -371,67 +360,6 @@ } public void setAttr_filter(Object attr_filter) { - this.attr_filter = attr_filter; - } - } - - /** - * 褰卞儚鍒楄〃 - */ - public class ImageList { - /** - * 鏁版嵁婧愶細褰撳墠鍙兘涓篖ocal - */ - private String datasource; - - /** - * 褰卞儚鐩綍 - */ - private String path; - - /** - * 褰卞儚鏃堕棿 - */ - private String image_time; - - /** - * 灞炴�ц繃婊� - */ - private String attr_filter; - - public ImageList() { - datasource = "Local"; - } - - public String getDatasource() { - return datasource; - } - - public void setDatasource(String datasource) { - this.datasource = datasource; - } - - public String getPath() { - return path; - } - - public void setPath(String path) { - this.path = path; - } - - public String getImage_time() { - return image_time; - } - - public void setImage_time(String image_time) { - this.image_time = image_time; - } - - public String getAttr_filter() { - return attr_filter; - } - - public void setAttr_filter(String attr_filter) { this.attr_filter = attr_filter; } } -- Gitblit v1.9.3