#
Junjie
2025-08-03 411b69b35e91d3d75fb7de7de1bc50e148038959
src/main/java/com/zy/asrs/utils/NotifyUtils.java
@@ -69,6 +69,16 @@
    }
    private boolean append(String notifyType, Integer device, String taskNo, String superTaskNo, NotifyMsgType msgType, String data) {
        boolean notifyEnable = true;
        Config notifyEnableConfig = configService.selectOne(new EntityWrapper<Config>().eq("code", "notifyEnable"));
        if (notifyEnableConfig != null) {
            notifyEnable = notifyEnableConfig.getValue().equals("Y");
        }
        if (!notifyEnable) {
            return false;
        }
        String key = getKey(notifyType, device);
        if (key == null) {
            return false;