修改websocket配置
All checks were successful
Build and Push to Target Registry / 构建并推送镜像到目标仓库 (push) Successful in 12m52s

This commit is contained in:
lxj
2025-09-13 10:00:38 +08:00
parent 727c8e06ce
commit 66ac68b632

View File

@@ -47,9 +47,6 @@ import org.dromara.sis.service.ISisDeviceManageService;
import org.dromara.system.api.RemoteDictService; import org.dromara.system.api.RemoteDictService;
import org.dromara.system.api.domain.vo.RemoteDictDataVo; import org.dromara.system.api.domain.vo.RemoteDictDataVo;
import org.dromara.system.api.model.LoginUser; import org.dromara.system.api.model.LoginUser;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
@@ -64,7 +61,7 @@ import java.util.*;
@Slf4j @Slf4j
@RequiredArgsConstructor @RequiredArgsConstructor
@Service @Service
public class SisAlarmEventsServiceImpl implements ISisAlarmEventsService, ApplicationContextAware { public class SisAlarmEventsServiceImpl implements ISisAlarmEventsService {
private final SisAlarmEventsMapper baseMapper; private final SisAlarmEventsMapper baseMapper;
private final ISisDeviceManageService deviceManageService; private final ISisDeviceManageService deviceManageService;
@@ -317,12 +314,6 @@ public class SisAlarmEventsServiceImpl implements ISisAlarmEventsService, Applic
return true; return true;
} }
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
}
@Override @Override
public TableDataInfo<SisAlarmEventsVo> queryCurrAssignment(SisAlarmEventsBo bo, PageQuery pageQuery) { public TableDataInfo<SisAlarmEventsVo> queryCurrAssignment(SisAlarmEventsBo bo, PageQuery pageQuery) {