From 270a27a7faf962ed8748825b57dd3df479bcf93a Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期一, 17 十一月 2025 16:28:46 +0800
Subject: [PATCH] #
---
src/main/webapp/views/debugParam/debugParam.html | 6 +++---
src/main/java/com/zy/core/News.java | 12 ++++++------
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/main/java/com/zy/core/News.java b/src/main/java/com/zy/core/News.java
index b60de78..ee6d486 100644
--- a/src/main/java/com/zy/core/News.java
+++ b/src/main/java/com/zy/core/News.java
@@ -103,11 +103,11 @@
}
public static void info(String format, Object... arguments) {
- if (format.contains("[RCS Debug]")) {
+ if (format.contains("[WCS Debug]")) {
ConfigService configService = SpringUtils.getBean(ConfigService.class);
if(configService != null) {
boolean show = true;
- Config config = configService.selectOne(new EntityWrapper<Config>().eq("code", "rcsDebugShowLog"));
+ Config config = configService.selectOne(new EntityWrapper<Config>().eq("code", "wcsDebugShowLog"));
if(config != null) {
show = config.getValue().equals("true");
}
@@ -138,11 +138,11 @@
}
public static void warn(String format, Object... arguments) {
- if (format.contains("[RCS Debug]")) {
+ if (format.contains("[WCS Debug]")) {
ConfigService configService = SpringUtils.getBean(ConfigService.class);
if(configService != null) {
boolean show = true;
- Config config = configService.selectOne(new EntityWrapper<Config>().eq("code", "rcsDebugShowLog"));
+ Config config = configService.selectOne(new EntityWrapper<Config>().eq("code", "wcsDebugShowLog"));
if(config != null) {
show = config.getValue().equals("true");
}
@@ -173,11 +173,11 @@
}
public static void error(String format, Object... arguments) {
- if (format.contains("[RCS Debug]")) {
+ if (format.contains("[WCS Debug]")) {
ConfigService configService = SpringUtils.getBean(ConfigService.class);
if(configService != null) {
boolean show = true;
- Config config = configService.selectOne(new EntityWrapper<Config>().eq("code", "rcsDebugShowLog"));
+ Config config = configService.selectOne(new EntityWrapper<Config>().eq("code", "wcsDebugShowLog"));
if(config != null) {
show = config.getValue().equals("true");
}
diff --git a/src/main/webapp/views/debugParam/debugParam.html b/src/main/webapp/views/debugParam/debugParam.html
index 4650fb5..740f5fb 100644
--- a/src/main/webapp/views/debugParam/debugParam.html
+++ b/src/main/webapp/views/debugParam/debugParam.html
@@ -79,8 +79,8 @@
<div class="show-box">
<div>杈撳嚭RCS璋冭瘯鏃ュ織</div>
- <el-radio border v-model="codeMap.rcsDebugShowLog" label="true">寮�</el-radio>
- <el-radio border v-model="codeMap.rcsDebugShowLog" label="false">鍏�</el-radio>
+ <el-radio border v-model="codeMap.wcsDebugShowLog" label="true">寮�</el-radio>
+ <el-radio border v-model="codeMap.wcsDebugShowLog" label="false">鍏�</el-radio>
</div>
</div>
@@ -273,7 +273,7 @@
data.push('shuttleOutLiftLocationDistance');
data.push('shuttleMoveCommandsContinuously');
data.push('trafficControlRestartCalcPath');
- data.push('rcsDebugShowLog');
+ data.push('wcsDebugShowLog');
}else if (type == "charge") {
data.push('chargeMaxValue');
data.push('shuttlePowerEarlyValue');
--
Gitblit v1.9.1