From 05683f2b2bdbdbe21cf17ad523c21ab338bd1c54 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期二, 19 七月 2022 21:49:55 +0800
Subject: [PATCH] 优化添加设备 功能
---
java110-interface/src/main/java/com/java110/config/properties/code/Java110Properties.java | 20 ++++++++++++++++----
1 files changed, 16 insertions(+), 4 deletions(-)
diff --git a/java110-interface/src/main/java/com/java110/config/properties/code/Java110Properties.java b/java110-interface/src/main/java/com/java110/config/properties/code/Java110Properties.java
index 8fa0312..f6f5715 100755
--- a/java110-interface/src/main/java/com/java110/config/properties/code/Java110Properties.java
+++ b/java110-interface/src/main/java/com/java110/config/properties/code/Java110Properties.java
@@ -27,6 +27,9 @@
private String ftpPath;
+ private String testSwitch;
+
+
public String getMappingPath() {
return mappingPath;
}
@@ -84,12 +87,12 @@
this.ftpUserPassword = ftpUserPassword;
}
- public int getFtpPort() {
- return ftpPort;
- }
-
public void setFtpPort(int ftpPort) {
this.ftpPort = ftpPort;
+ }
+
+ public int getFtpPort() {
+ return ftpPort;
}
public String getFtpPath() {
@@ -99,4 +102,13 @@
public void setFtpPath(String ftpPath) {
this.ftpPath = ftpPath;
}
+
+ public String getTestSwitch() {
+ //return testSwitch;
+ return "0";
+ }
+
+ public void setTestSwitch(String testSwitch) {
+ this.testSwitch = testSwitch;
+ }
}
--
Gitblit v1.8.0