src/main/java/com/se/simu/domain/dto/LayerDto.java
@@ -1,11 +1,8 @@ package com.se.simu.domain.dto; /** * 图层实体类 * * @author WWW * @date 2024-09-30 */ import java.util.List; @SuppressWarnings("ALL") public class LayerDto { private String version; @@ -20,6 +17,14 @@ public LayerDto() { } public LayerDto(String ver, int epsg, List<Integer> sizes) { this.version = ver; this.waters = new WaterDto(); this.duration = new DurationDto(); this.terrain = new TerrainDto(sizes); this.terrain.setEpsg(epsg + ""); } public String getVersion() { return version; }