wvp-GB28181-pro/src/main/java/com/genersoft/iot/vmp/service/IDeviceChannelService.java

36 lines
747 B
Java
Raw Normal View History

package com.genersoft.iot.vmp.service;
import com.genersoft.iot.vmp.gb28181.bean.Device;
import com.genersoft.iot.vmp.gb28181.bean.DeviceChannel;
import java.util.List;
/**
*
* @author lin
*/
public interface IDeviceChannelService {
/**
* gps
*/
DeviceChannel updateGps(DeviceChannel deviceChannel, Device device);
/**
*
*
* @param deviceId id
* @param channel
*/
void updateChannel(String deviceId, DeviceChannel channel);
/**
*
*
* @param deviceId id
* @param channels
*/
int updateChannels(String deviceId, List<DeviceChannel> channels);
}