#
Junjie
2026-01-15 ef1cd5823fe7cf724e1de875a1a5737a44f160f1
src/main/java/com/zy/core/ServerBootstrap.java
@@ -11,6 +11,7 @@
import com.zy.core.thread.impl.ZySiemensCrnThread;
import com.zy.core.thread.impl.ZySiemensDualCrnThread;
import com.zy.core.thread.impl.ZyStationThread;
import com.zy.core.thread.impl.ZyStationV3Thread;
import com.zy.core.thread.impl.ZyRgvThread;
import lombok.extern.slf4j.Slf4j;
@@ -134,6 +135,8 @@
                ThreadHandler thread = null;
                if (deviceConfig.getThreadImpl().equals("ZyStationThread")) {
                    thread = new ZyStationThread(deviceConfig, redisUtil);
                } else if (deviceConfig.getThreadImpl().equals("ZyStationV3Thread")) {
                    thread = new ZyStationV3Thread(deviceConfig, redisUtil);
                } else {
                    throw new CoolException("未知的线程实现");
                }