From 91b22297a2dff3633472091c694a612315dfe045 Mon Sep 17 00:00:00 2001 From: lijiahangmax Date: Sun, 2 Nov 2025 01:06:12 +0800 Subject: [PATCH] =?UTF-8?q?:hammer:=20=E4=BF=AE=E6=94=B9=E9=87=8D=E5=A4=8D?= =?UTF-8?q?=E6=8F=90=E7=A4=BA.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../module/asset/service/impl/HostIdentityServiceImpl.java | 2 +- .../visor/module/asset/service/impl/HostKeyServiceImpl.java | 2 +- .../visor/module/exec/service/impl/ExecJobServiceImpl.java | 2 +- .../visor/module/exec/service/impl/ExecTemplateServiceImpl.java | 2 +- .../visor/module/infra/service/impl/DataGroupServiceImpl.java | 2 +- .../visor/module/infra/service/impl/DictKeyServiceImpl.java | 2 +- .../module/infra/service/impl/NotifyTemplateServiceImpl.java | 2 +- .../dromara/visor/module/infra/service/impl/TagServiceImpl.java | 2 +- .../module/monitor/service/impl/AlarmPolicyServiceImpl.java | 2 +- .../module/monitor/service/impl/MonitorMetricsServiceImpl.java | 2 +- .../module/terminal/service/impl/CommandSnippetServiceImpl.java | 2 +- .../module/terminal/service/impl/PathBookmarkServiceImpl.java | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/orion-visor-modules/orion-visor-module-asset/orion-visor-module-asset-service/src/main/java/org/dromara/visor/module/asset/service/impl/HostIdentityServiceImpl.java b/orion-visor-modules/orion-visor-module-asset/orion-visor-module-asset-service/src/main/java/org/dromara/visor/module/asset/service/impl/HostIdentityServiceImpl.java index bc789f71..b9878a39 100644 --- a/orion-visor-modules/orion-visor-module-asset/orion-visor-module-asset-service/src/main/java/org/dromara/visor/module/asset/service/impl/HostIdentityServiceImpl.java +++ b/orion-visor-modules/orion-visor-module-asset/orion-visor-module-asset-service/src/main/java/org/dromara/visor/module/asset/service/impl/HostIdentityServiceImpl.java @@ -258,7 +258,7 @@ public class HostIdentityServiceImpl implements HostIdentityService { .eq(HostIdentityDO::getName, domain.getName()); // 检查是否存在 boolean present = hostIdentityDAO.of(wrapper).present(); - Assert.isFalse(present, ErrorMessage.DATA_PRESENT); + Assert.isFalse(present, ErrorMessage.NAME_PRESENT); } /** diff --git a/orion-visor-modules/orion-visor-module-asset/orion-visor-module-asset-service/src/main/java/org/dromara/visor/module/asset/service/impl/HostKeyServiceImpl.java b/orion-visor-modules/orion-visor-module-asset/orion-visor-module-asset-service/src/main/java/org/dromara/visor/module/asset/service/impl/HostKeyServiceImpl.java index 5ea6f8d8..94830dac 100644 --- a/orion-visor-modules/orion-visor-module-asset/orion-visor-module-asset-service/src/main/java/org/dromara/visor/module/asset/service/impl/HostKeyServiceImpl.java +++ b/orion-visor-modules/orion-visor-module-asset/orion-visor-module-asset-service/src/main/java/org/dromara/visor/module/asset/service/impl/HostKeyServiceImpl.java @@ -242,7 +242,7 @@ public class HostKeyServiceImpl implements HostKeyService { .eq(HostKeyDO::getName, domain.getName()); // 检查是否存在 boolean present = hostKeyDAO.of(wrapper).present(); - Assert.isFalse(present, ErrorMessage.DATA_PRESENT); + Assert.isFalse(present, ErrorMessage.NAME_PRESENT); } /** diff --git a/orion-visor-modules/orion-visor-module-exec/orion-visor-module-exec-service/src/main/java/org/dromara/visor/module/exec/service/impl/ExecJobServiceImpl.java b/orion-visor-modules/orion-visor-module-exec/orion-visor-module-exec-service/src/main/java/org/dromara/visor/module/exec/service/impl/ExecJobServiceImpl.java index c9deab3e..cba640e8 100644 --- a/orion-visor-modules/orion-visor-module-exec/orion-visor-module-exec-service/src/main/java/org/dromara/visor/module/exec/service/impl/ExecJobServiceImpl.java +++ b/orion-visor-modules/orion-visor-module-exec/orion-visor-module-exec-service/src/main/java/org/dromara/visor/module/exec/service/impl/ExecJobServiceImpl.java @@ -408,7 +408,7 @@ public class ExecJobServiceImpl implements ExecJobService { .eq(ExecJobDO::getName, domain.getName()); // 检查是否存在 boolean present = execJobDAO.of(wrapper).present(); - Assert.isFalse(present, ErrorMessage.DATA_PRESENT); + Assert.isFalse(present, ErrorMessage.NAME_PRESENT); } /** diff --git a/orion-visor-modules/orion-visor-module-exec/orion-visor-module-exec-service/src/main/java/org/dromara/visor/module/exec/service/impl/ExecTemplateServiceImpl.java b/orion-visor-modules/orion-visor-module-exec/orion-visor-module-exec-service/src/main/java/org/dromara/visor/module/exec/service/impl/ExecTemplateServiceImpl.java index a8d4ac01..41a834df 100644 --- a/orion-visor-modules/orion-visor-module-exec/orion-visor-module-exec-service/src/main/java/org/dromara/visor/module/exec/service/impl/ExecTemplateServiceImpl.java +++ b/orion-visor-modules/orion-visor-module-exec/orion-visor-module-exec-service/src/main/java/org/dromara/visor/module/exec/service/impl/ExecTemplateServiceImpl.java @@ -208,7 +208,7 @@ public class ExecTemplateServiceImpl implements ExecTemplateService { .eq(ExecTemplateDO::getName, domain.getName()); // 检查是否存在 boolean present = execTemplateDAO.of(wrapper).present(); - Assert.isFalse(present, ErrorMessage.DATA_PRESENT); + Assert.isFalse(present, ErrorMessage.NAME_PRESENT); } } diff --git a/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/DataGroupServiceImpl.java b/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/DataGroupServiceImpl.java index 5f776efe..539dda0a 100644 --- a/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/DataGroupServiceImpl.java +++ b/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/DataGroupServiceImpl.java @@ -343,7 +343,7 @@ public class DataGroupServiceImpl implements DataGroupService { .eq(DataGroupDO::getName, domain.getName()); // 检查是否存在 boolean present = dataGroupDAO.of(wrapper).present(); - Assert.isFalse(present, ErrorMessage.DATA_PRESENT); + Assert.isFalse(present, ErrorMessage.NAME_PRESENT); } /** diff --git a/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/DictKeyServiceImpl.java b/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/DictKeyServiceImpl.java index 49ba95f4..e603863d 100644 --- a/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/DictKeyServiceImpl.java +++ b/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/DictKeyServiceImpl.java @@ -248,7 +248,7 @@ public class DictKeyServiceImpl implements DictKeyService { .eq(DictKeyDO::getKeyName, domain.getKeyName()); // 检查是否存在 boolean present = dictKeyDAO.of(wrapper).present(); - Assert.isFalse(present, ErrorMessage.DATA_PRESENT); + Assert.isFalse(present, ErrorMessage.NAME_PRESENT); } /** diff --git a/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/NotifyTemplateServiceImpl.java b/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/NotifyTemplateServiceImpl.java index 57d153ec..a8dcb7fa 100644 --- a/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/NotifyTemplateServiceImpl.java +++ b/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/NotifyTemplateServiceImpl.java @@ -226,7 +226,7 @@ public class NotifyTemplateServiceImpl implements NotifyTemplateService { .eq(NotifyTemplateDO::getBizType, domain.getBizType()); // 检查是否存在 boolean present = notifyTemplateDAO.of(wrapper).present(); - Assert.isFalse(present, ErrorMessage.DATA_PRESENT); + Assert.isFalse(present, ErrorMessage.NAME_PRESENT); } } diff --git a/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/TagServiceImpl.java b/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/TagServiceImpl.java index ba110da2..e7125b82 100644 --- a/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/TagServiceImpl.java +++ b/orion-visor-modules/orion-visor-module-infra/orion-visor-module-infra-service/src/main/java/org/dromara/visor/module/infra/service/impl/TagServiceImpl.java @@ -243,7 +243,7 @@ public class TagServiceImpl implements TagService { .eq(TagDO::getName, domain.getName()); // 检查是否存在 boolean present = tagDAO.of(wrapper).present(); - Assert.isFalse(present, ErrorMessage.DATA_PRESENT); + Assert.isFalse(present, ErrorMessage.NAME_PRESENT); } } diff --git a/orion-visor-modules/orion-visor-module-monitor/orion-visor-module-monitor-service/src/main/java/org/dromara/visor/module/monitor/service/impl/AlarmPolicyServiceImpl.java b/orion-visor-modules/orion-visor-module-monitor/orion-visor-module-monitor-service/src/main/java/org/dromara/visor/module/monitor/service/impl/AlarmPolicyServiceImpl.java index e072d773..f205b5b6 100644 --- a/orion-visor-modules/orion-visor-module-monitor/orion-visor-module-monitor-service/src/main/java/org/dromara/visor/module/monitor/service/impl/AlarmPolicyServiceImpl.java +++ b/orion-visor-modules/orion-visor-module-monitor/orion-visor-module-monitor-service/src/main/java/org/dromara/visor/module/monitor/service/impl/AlarmPolicyServiceImpl.java @@ -297,7 +297,7 @@ public class AlarmPolicyServiceImpl implements AlarmPolicyService { .eq(AlarmPolicyDO::getName, domain.getName()); // 检查是否存在 boolean present = alarmPolicyDAO.of(wrapper).present(); - Assert.isFalse(present, ErrorMessage.DATA_PRESENT); + Assert.isFalse(present, ErrorMessage.NAME_PRESENT); } } diff --git a/orion-visor-modules/orion-visor-module-monitor/orion-visor-module-monitor-service/src/main/java/org/dromara/visor/module/monitor/service/impl/MonitorMetricsServiceImpl.java b/orion-visor-modules/orion-visor-module-monitor/orion-visor-module-monitor-service/src/main/java/org/dromara/visor/module/monitor/service/impl/MonitorMetricsServiceImpl.java index 6b22757c..adf112ee 100644 --- a/orion-visor-modules/orion-visor-module-monitor/orion-visor-module-monitor-service/src/main/java/org/dromara/visor/module/monitor/service/impl/MonitorMetricsServiceImpl.java +++ b/orion-visor-modules/orion-visor-module-monitor/orion-visor-module-monitor-service/src/main/java/org/dromara/visor/module/monitor/service/impl/MonitorMetricsServiceImpl.java @@ -203,7 +203,7 @@ public class MonitorMetricsServiceImpl implements MonitorMetricsService { .eq(MonitorMetricsDO::getValue, domain.getValue()); // 检查是否存在 boolean present = monitorMetricsDAO.of(wrapper).present(); - Assert.isFalse(present, ErrorMessage.DATA_PRESENT); + Assert.isFalse(present, ErrorMessage.NAME_PRESENT); } } diff --git a/orion-visor-modules/orion-visor-module-terminal/orion-visor-module-terminal-service/src/main/java/org/dromara/visor/module/terminal/service/impl/CommandSnippetServiceImpl.java b/orion-visor-modules/orion-visor-module-terminal/orion-visor-module-terminal-service/src/main/java/org/dromara/visor/module/terminal/service/impl/CommandSnippetServiceImpl.java index b4db6c5a..cc74b314 100644 --- a/orion-visor-modules/orion-visor-module-terminal/orion-visor-module-terminal-service/src/main/java/org/dromara/visor/module/terminal/service/impl/CommandSnippetServiceImpl.java +++ b/orion-visor-modules/orion-visor-module-terminal/orion-visor-module-terminal-service/src/main/java/org/dromara/visor/module/terminal/service/impl/CommandSnippetServiceImpl.java @@ -217,7 +217,7 @@ public class CommandSnippetServiceImpl implements CommandSnippetService { .eq(CommandSnippetDO::getName, domain.getName()); // 检查是否存在 boolean present = commandSnippetDAO.of(wrapper).present(); - Assert.isFalse(present, ErrorMessage.DATA_PRESENT); + Assert.isFalse(present, ErrorMessage.NAME_PRESENT); } } diff --git a/orion-visor-modules/orion-visor-module-terminal/orion-visor-module-terminal-service/src/main/java/org/dromara/visor/module/terminal/service/impl/PathBookmarkServiceImpl.java b/orion-visor-modules/orion-visor-module-terminal/orion-visor-module-terminal-service/src/main/java/org/dromara/visor/module/terminal/service/impl/PathBookmarkServiceImpl.java index 599bc8c1..10dcda14 100644 --- a/orion-visor-modules/orion-visor-module-terminal/orion-visor-module-terminal-service/src/main/java/org/dromara/visor/module/terminal/service/impl/PathBookmarkServiceImpl.java +++ b/orion-visor-modules/orion-visor-module-terminal/orion-visor-module-terminal-service/src/main/java/org/dromara/visor/module/terminal/service/impl/PathBookmarkServiceImpl.java @@ -217,7 +217,7 @@ public class PathBookmarkServiceImpl implements PathBookmarkService { .eq(PathBookmarkDO::getName, domain.getName()); // 检查是否存在 boolean present = pathBookmarkDAO.of(wrapper).present(); - Assert.isFalse(present, ErrorMessage.DATA_PRESENT); + Assert.isFalse(present, ErrorMessage.NAME_PRESENT); } }