From 18f2eb72590ce5ff79693eb8a27188a499bbd114 Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期二, 29 十月 2024 16:12:53 +0800
Subject: [PATCH] appointment table key Integer -> Long

---
 jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/config/MySpringEventListener.java |   35 ++++++++++++++++++++++++++++-------
 1 files changed, 28 insertions(+), 7 deletions(-)

diff --git a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/config/MySpringEventListener.java b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/config/MySpringEventListener.java
index 886aeaf..8c950f7 100644
--- a/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/config/MySpringEventListener.java
+++ b/jh-module-ecg/jh-module-ecg-biz/src/main/java/cn/lihu/jh/module/ecg/config/MySpringEventListener.java
@@ -1,8 +1,13 @@
 package cn.lihu.jh.module.ecg.config;
 
 import cn.lihu.jh.module.ecg.Utils;
+import cn.lihu.jh.module.ecg.service.callingscreen.BigScreenConfig;
+import cn.lihu.jh.module.ecg.service.callingscreen.CallingScreenService;
+import cn.lihu.jh.module.ecg.service.config.EcgConfigService;
 import cn.lihu.jh.module.ecg.service.queue.QueueService;
 import cn.lihu.jh.module.infra.api.config.ConfigApi;
+import cn.lihu.jh.module.system.api.dict.DictDataApi;
+import lombok.extern.slf4j.Slf4j;
 import org.springframework.boot.context.event.ApplicationStartedEvent;
 import org.springframework.context.event.EventListener;
 import org.springframework.stereotype.Component;
@@ -11,24 +16,40 @@
 import java.time.LocalTime;
 import java.util.List;
 
-import static cn.lihu.jh.module.ecg.Constants.ECG_OPENING_TIME_KEY;
-import static cn.lihu.jh.module.ecg.Constants.ECG_QUEUE_READY_MAX_KEY;
+import static cn.lihu.jh.module.ecg.Constants.*;
 
 @Component
+@Slf4j
 public class MySpringEventListener {
 
     @Resource
     private ConfigApi configApi;
 
     @Resource
-    private QueueService queueService;
+    private DictDataApi dictDataApi;
+
+    @Resource
+    private EcgConfigService ecgConfigService;
+
+    @Resource
+    QueueService queueService;
+
+    @Resource
+    CallingScreenService callingScreenService;
 
     @EventListener
     public void onApplicationEvent(ApplicationStartedEvent event) {
-        System.out.println("搴旂敤鍚姩瀹屾垚锛岀郴缁熷垵濮嬨�傘�傘��");
+        log.info("搴旂敤鍚姩瀹屾垚锛岀郴缁熷垵濮嬨�傘�傘��");
 
-        Integer queueReadyMax = Integer.valueOf(configApi.getConfigValueByKey(ECG_QUEUE_READY_MAX_KEY));
-        queueService.setQueueReadyMax( queueReadyMax );
+        queueService.initCheckType();
+
+        BigScreenConfig bigScreenConfig = new BigScreenConfig();
+        Integer waitingSize = Integer.valueOf(configApi.getConfigValueByKey(ECG_SCREEN_PANE_WAITING_KEY));
+        Integer passedSize = Integer.valueOf(configApi.getConfigValueByKey(ECG_SCREEN_PANE_PASSED_KEY));
+        bigScreenConfig.setWaitingSize( waitingSize);
+        bigScreenConfig.setPassedSize( passedSize);
+        callingScreenService.setBigScreenConfig(bigScreenConfig);
+        callingScreenService.getDisplayColInfo();
 
         String strOpenCloseTime = configApi.getConfigValueByKey(ECG_OPENING_TIME_KEY);
         List<LocalTime> list = Utils.parseOpeningTime(strOpenCloseTime);
@@ -45,6 +66,6 @@
             queueService.startBiz();
         }
 
-        queueService.resetScheduler();
+        ecgConfigService.resetScheduler();
     }
 }

--
Gitblit v1.9.3