优化各个配置启动顺序

This commit is contained in:
648540858
2023-02-22 18:01:30 +08:00
parent 4446218f9e
commit 2d2832dbe9
19 changed files with 50 additions and 11 deletions

View File

@@ -51,4 +51,9 @@ public interface IDeviceChannelService {
* 数据位置信息格式处理
*/
boolean updateAllGps(Device device);
/**
* 查询通道所属的设备
*/
List<Device> getDeviceByChannelId(String channelId);
}

View File

@@ -204,4 +204,9 @@ public class DeviceChannelServiceImpl implements IDeviceChannelService {
return true;
}
@Override
public List<Device> getDeviceByChannelId(String channelId) {
return channelMapper.getDeviceByChannelId(channelId);
}
}