dcb
2025-06-06 a2ee6e0dcdcfd9d1b8011a3cecb4e0fc4f6eeea3
src/main/java/com/se/nsl/domain/dto/LayerDto.java
@@ -6,6 +6,8 @@
public class LayerDto {
    private String version;
    private String name; //生成json的名字,默认位layer.json
    private DurationDto duration;
    private ExtensionDto extension;
@@ -19,9 +21,11 @@
    private String flowUrl;
    public LayerDto() {
        this.name = "layer.json";
    }
    public LayerDto(String ver, int epsg, List<Integer> sizes) {
        this();
        this.version = ver;
        this.waters = new WaterDto();
        this.duration = new DurationDto();
@@ -37,6 +41,14 @@
        this.version = version;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public DurationDto getDuration() {
        return duration;
    }