| | |
| | | package cn.gistack.nky.mapper; |
| | | |
| | | import cn.gistack.nky.entity.HstPredict; |
| | | import cn.gistack.nky.vo.HstPredictVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface HstPredictMapper extends BaseMapper<HstPredict> { |
| | | List<HstPredict> getFutureData(String resCd, String type); |
| | | List<HstPredictVO> getFutureData(@Param("resCd") String resCd, @Param("type") String type); |
| | | |
| | | List<HstPredictVO> getFutureDataWy(@Param("resCd") String resCd, @Param("type") String type); |
| | | |
| | | List<HstPredict> selectTodayData(@Param("entity") HstPredict entity); |
| | | |
| | | |
| | | } |