15 lines
254 B
Java
15 lines
254 B
Java
package com.ruoyi.iot.service;
|
|
|
|
import com.ruoyi.iot.domain.CurrentDeviceData;
|
|
import com.ruoyi.iot.domain.IotDeviceInfo;
|
|
|
|
/**
|
|
* @author wjh
|
|
* 2024/9/29
|
|
*/
|
|
public interface IotConverter {
|
|
|
|
IotDeviceInfo toIotDeviceInfo(CurrentDeviceData data);
|
|
|
|
}
|