package com.zswl.dataservice.dao.mqtt; import com.zswl.dataservice.dao.MongoDao; import com.zswl.dataservice.dao.mqtt.extend.DeviceInfoDaoExtend; import com.zswl.dataservice.domain.mqtt.DeviceInfo; import java.util.List; /** * @author TRX * @date 2024/3/21 */ public interface DeviceInfoDao extends MongoDao, DeviceInfoDaoExtend { DeviceInfo findTopById(String id); DeviceInfo findTopByDeviceId(String deviceId); List findByDeviceIdIn(List deviceIds); }