From f31f0991c0d2036e563b886f57de4cf45d3c72cb Mon Sep 17 00:00:00 2001
From: dcb <xgybdcb@163.com>
Date: 星期二, 01 七月 2025 14:51:59 +0800
Subject: [PATCH] 实时模拟异步功能实现

---
 src/main/java/com/se/nsl/config/PropertiesConfig.java |   80 ++++++++++++++++++++++++++++++++++++++++
 1 files changed, 80 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/se/nsl/config/PropertiesConfig.java b/src/main/java/com/se/nsl/config/PropertiesConfig.java
index 48b5b8d..6d50206 100644
--- a/src/main/java/com/se/nsl/config/PropertiesConfig.java
+++ b/src/main/java/com/se/nsl/config/PropertiesConfig.java
@@ -66,6 +66,8 @@
 
     private Integer saveFrames;
 
+    private Integer saveFrameInterval;
+
     private List<Integer> sizes;
 
     private String terrainFile;
@@ -78,6 +80,12 @@
 
     private String flowPath;
 
+    private String sourceDem;
+
+    private String sourceLanduse;
+
+    private String landuseFile;
+
     private boolean copyTif;
 
     private String tifPath;
@@ -87,6 +95,14 @@
     private String rainfallSite;
 
     private Integer landuse;
+
+    private Integer epsg;
+
+    private String keyDitch;
+
+    private Double saveFilter;
+
+    private Double evaporation;
 
     public String getVer() {
         return ver;
@@ -280,6 +296,14 @@
         this.saveFrames = saveFrames;
     }
 
+    public Integer getSaveFrameInterval() {
+        return saveFrameInterval;
+    }
+
+    public void setSaveFrameInterval(Integer saveFrameInterval) {
+        this.saveFrameInterval = saveFrameInterval;
+    }
+
     public boolean isCopyTif() {
         return copyTif;
     }
@@ -403,4 +427,60 @@
     public void setCreateRainfall(String createRainfall) {
         this.createRainfall = createRainfall;
     }
+
+    public Integer getEpsg() {
+        return epsg;
+    }
+
+    public void setEpsg(Integer epsg) {
+        this.epsg = epsg;
+    }
+
+    public String getSourceDem() {
+        return sourceDem;
+    }
+
+    public void setSourceDem(String sourceDem) {
+        this.sourceDem = sourceDem;
+    }
+
+    public String getSourceLanduse() {
+        return sourceLanduse;
+    }
+
+    public void setSourceLanduse(String sourceLanduse) {
+        this.sourceLanduse = sourceLanduse;
+    }
+
+    public String getLanduseFile() {
+        return landuseFile;
+    }
+
+    public void setLanduseFile(String landuseFile) {
+        this.landuseFile = landuseFile;
+    }
+
+    public String getKeyDitch() {
+        return keyDitch;
+    }
+
+    public void setKeyDitch(String keyDitch) {
+        this.keyDitch = keyDitch;
+    }
+
+    public Double getSaveFilter() {
+        return saveFilter;
+    }
+
+    public void setSaveFilter(Double saveFilter) {
+        this.saveFilter = saveFilter;
+    }
+
+    public Double getEvaporation() {
+        return evaporation;
+    }
+
+    public void setEvaporation(Double evaporation) {
+        this.evaporation = evaporation;
+    }
 }

--
Gitblit v1.9.3