src/main/java/com/se/simu/domain/dto/LayerDto.java
@@ -1,5 +1,7 @@ package com.se.simu.domain.dto; import java.util.List; /** * 图层实体类 * @@ -18,14 +20,14 @@ private WaterDto waters; public LayerDto() { this.duration = new DurationDto(); this.terrain = new TerrainDto(); this.waters = new WaterDto(); } public LayerDto(String ver) { this(); 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() {