package com.sandu.ximon.admin.service;
|
|
import lombok.AllArgsConstructor;
|
import org.springframework.stereotype.Service;
|
|
import java.util.concurrent.ExecutorService;
|
import java.util.concurrent.Executors;
|
|
/**
|
* @author LiuHaoNan
|
* @date 2022/9/27
|
*/
|
@Service
|
@AllArgsConstructor
|
public class DeviceStatusCountService implements Runnable {
|
|
private final WaterQualityEquipmentService waterQualityEquipmentService;
|
private final AirEquipmentNongGengService airEquipmentNongGengService;
|
private final LightPoleHeelingService poleHeelingService;
|
private final AirEquipmentService airEquipmentService;
|
private final LedPlayerEntityService ledNovaService;
|
private final PoleLightemitService ledXixunService;
|
private final C3ChargingService c3ChargingService;
|
private final IpVolumeService ipVolumeService;
|
private final MonitorService monitorService;
|
private final LightService lightService;
|
|
|
@Override
|
public void run() {
|
|
}
|
}
|