|
@@ -26,6 +26,8 @@ public class FmsConfig
|
|
|
|
|
|
/** 上传路径 */
|
|
|
private static String profile;
|
|
|
+ /** 生成报告路径 */
|
|
|
+ private static String report;
|
|
|
|
|
|
/** 获取地址开关 */
|
|
|
private static boolean addressEnabled;
|
|
@@ -132,4 +134,12 @@ public class FmsConfig
|
|
|
{
|
|
|
return getProfile() + "/upload";
|
|
|
}
|
|
|
+
|
|
|
+ public static String getReport() {
|
|
|
+ return report;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReport(String report) {
|
|
|
+ FmsConfig.report = report;
|
|
|
+ }
|
|
|
}
|