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