From 97629da6a002b534da10f828187fd6cd65941aa4 Mon Sep 17 00:00:00 2001 From: dcb <xgybdcb@163.com> Date: 星期一, 07 七月 2025 17:14:13 +0800 Subject: [PATCH] 模拟间隔支持毫秒级 --- src/main/java/com/se/nsl/config/PropertiesConfig.java | 36 +++++++++++++++++++++++++++++++++--- 1 files changed, 33 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/se/nsl/config/PropertiesConfig.java b/src/main/java/com/se/nsl/config/PropertiesConfig.java index e035421..31ee946 100644 --- a/src/main/java/com/se/nsl/config/PropertiesConfig.java +++ b/src/main/java/com/se/nsl/config/PropertiesConfig.java @@ -66,7 +66,7 @@ private Integer saveFrames; - private Integer saveFrameInterval; + private Double saveFrameInterval; private List<Integer> sizes; @@ -97,6 +97,12 @@ private Integer landuse; private Integer epsg; + + private String keyDitch; + + private Double saveFilter; + + private Double evaporation; public String getVer() { return ver; @@ -290,11 +296,11 @@ this.saveFrames = saveFrames; } - public Integer getSaveFrameInterval() { + public Double getSaveFrameInterval() { return saveFrameInterval; } - public void setSaveFrameInterval(Integer saveFrameInterval) { + public void setSaveFrameInterval(Double saveFrameInterval) { this.saveFrameInterval = saveFrameInterval; } @@ -453,4 +459,28 @@ 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