12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 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<JiaYueWindPowerNwpResultCoverFD0003> {
- /**
- * 查询所有数据(远端)
- *
- * @return
- */
- List<JiaYueWindPowerNwpResultCoverFD0003> get();
- /**
- * 查询所有数据插入到本地
- *
- * @param jiaYueWindPowerNwpResultCoverList
- * @return
- */
- int put(List<JiaYueWindPowerNwpResultCoverFD0003> jiaYueWindPowerNwpResultCoverList);
- /**
- * 查询所有数据(本地)
- *
- * @return
- */
- List<JiaYueWindPowerNwpResultCoverFD0003> getAll();
- /**
- * 删除所有数据(本地)
- *
- * @return
- */
- int deleteAll();
- /**
- * 储存解析nwp数据
- */
- void saveNwp(List<JiaYueWindPowerNwpResultCoverFD0003> jiaYueWindPowerNwpResultCoverList, String stationCode);
- /**
- * 查询所有数据(远端)
- *
- * @return
- */
- List<JiaYueWindPowerNwpResultCoverFD0003> getByDataDateAndDateTime(String fileDate, String fileTime, String objId);
- }
|