From cfdc569b6316ed2e44bc7fc85b785612262abe21 Mon Sep 17 00:00:00 2001
From: wuww <252740454@qq.com>
Date: 星期五, 16 五月 2025 14:41:42 +0800
Subject: [PATCH] 添加裁剪DEM、土地利用功能

---
 src/main/java/com/se/nsl/config/PropertiesConfig.java |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 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 3540064..6d19af8 100644
--- a/src/main/java/com/se/nsl/config/PropertiesConfig.java
+++ b/src/main/java/com/se/nsl/config/PropertiesConfig.java
@@ -78,6 +78,12 @@
 
     private String flowPath;
 
+    private String sourceDem;
+
+    private String sourceLanduse;
+
+    private String landuseFile;
+
     private boolean copyTif;
 
     private String tifPath;
@@ -413,4 +419,28 @@
     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;
+    }
 }

--
Gitblit v1.9.3