2026-01-30 14:06:38 +08:00
|
|
|
package com.ruoyi.device.domain.api;
|
|
|
|
|
|
|
|
|
|
import com.ruoyi.device.domain.model.weather.Weather;
|
|
|
|
|
|
|
|
|
|
public interface IWeatherDomain {
|
2026-01-31 11:02:39 +08:00
|
|
|
Weather weatherInfo(String lat, String lon,String dockerDeviceIotId);
|
2026-01-30 14:06:38 +08:00
|
|
|
}
|