优化各个配置启动顺序
This commit is contained in:
@@ -51,4 +51,9 @@ public interface IDeviceChannelService {
|
||||
* 数据位置信息格式处理
|
||||
*/
|
||||
boolean updateAllGps(Device device);
|
||||
|
||||
/**
|
||||
* 查询通道所属的设备
|
||||
*/
|
||||
List<Device> getDeviceByChannelId(String channelId);
|
||||
}
|
||||
|
||||
@@ -204,4 +204,9 @@ public class DeviceChannelServiceImpl implements IDeviceChannelService {
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Device> getDeviceByChannelId(String channelId) {
|
||||
return channelMapper.getDeviceByChannelId(channelId);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user