package com.jiayue.ipfcst.client.service; import com.baomidou.mybatisplus.extension.service.IService; import com.jiayue.ipp.common.data.entity.JiaYueWindPowerNwpResultCoverFD0003; import org.springframework.stereotype.Service; import java.util.List; @Service public interface JiaYueWindPowerNwpResultCoverFD0003Service extends IService { /** * 查询所有数据(远端) * * @return */ List get(); /** * 查询所有数据插入到本地 * * @param jiaYueWindPowerNwpResultCoverList * @return */ int put(List jiaYueWindPowerNwpResultCoverList); /** * 查询所有数据(本地) * * @return */ List getAll(); /** * 删除所有数据(本地) * * @return */ int deleteAll(); /** * 储存解析nwp数据 */ void saveNwp(List jiaYueWindPowerNwpResultCoverList, String stationCode); /** * 查询所有数据(远端) * * @return */ List getByDataDateAndDateTime(String fileDate, String fileTime, String objId); }