From 190cc52625bea627b6266f0124bd0d638f03394c Mon Sep 17 00:00:00 2001 From: clll <1320612696@qq.com> Date: 星期三, 06 九月 2023 17:15:56 +0800 Subject: [PATCH] 更新代码 --- springboot-vue3/src/main/java/com/example/springboot/config/AppRunnerConfig.java | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/springboot-vue3/src/main/java/com/example/springboot/config/AppRunnerConfig.java b/springboot-vue3/src/main/java/com/example/springboot/config/AppRunnerConfig.java index 3e48672..311081c 100644 --- a/springboot-vue3/src/main/java/com/example/springboot/config/AppRunnerConfig.java +++ b/springboot-vue3/src/main/java/com/example/springboot/config/AppRunnerConfig.java @@ -6,7 +6,11 @@ import org.springframework.stereotype.Component; import com.example.springboot.component.PlcHold; +import com.example.springboot.component.PlcParameter; import com.example.springboot.component.Plcaction; +import com.example.springboot.component.Plcalarm; +import com.example.springboot.component.Plcsign; +import com.example.springboot.component.Plcstate; @Component @Order(1) @@ -20,5 +24,13 @@ new PlcHold().start(); new Plcaction().start(); + + new PlcParameter().start(); + + new Plcalarm().start(); + + new Plcsign().start(); + + new Plcstate().start(); } } -- Gitblit v1.8.0