25 lines
501 B
Java
25 lines
501 B
Java
package com.hivekion.baseData.service;
|
|
|
|
import com.hivekion.baseData.entity.WeatherResource;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.hivekion.environment.entity.SimtoolEbe;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* <p>
|
|
* 气像资源信息 服务类
|
|
* </p>
|
|
*
|
|
* @author liDongYu
|
|
* @since 2025-09-14
|
|
*/
|
|
public interface IWeatherResourceService extends IService<WeatherResource> {
|
|
|
|
List<WeatherResource> list(WeatherResource ebe);
|
|
|
|
Long count(WeatherResource ebe);
|
|
|
|
|
|
}
|