wuww
2025-05-15 8c5e6760b844c9664652a8a4c749ade1303a1794
src/main/java/com/se/nsl/domain/vo/ConfigVo.java
@@ -50,13 +50,14 @@
    public ConfigVo(String terrain, String landuse, String station, String raingage, String saveName, int duration, int frames) {
        this();
        this.terrain.set(0, terrain.replace("\\", "/")); // 地形高程数据
        //this.terrain.set(0, terrain.replace("\\", "/")); // 地形高程数据
        //this.landuse.set(0, landuse.replace("\\", "/")); // 土地利用类型
        this.station.set(0, station.replace("\\", "/")); // 雨量站索引
        //this.station.set(0, station.replace("\\", "/")); // 雨量站索引
        this.raingage = raingage.replace("\\", "/");
        this.duration = duration;
        this.result = new ResultVo(saveName, duration, frames);
        int saveInterval = duration / frames - 5; // 修订最后一帧可能为空数据
        this.result = new ResultVo(saveName, frames, saveInterval);
    }
    public List<Object> getTerrain() {