11
13693261870
2024-11-11 138b959cc11dc9a73b0c766030b99ba1180d8650
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;
@@ -18,14 +15,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() {