guoshilong
2023-11-16 00165e5d50f47c99d9eb7c2fc784bef4d3f72aca
skjcmanager/skjcmanager-service/skjcmanager-nky/src/main/java/cn/gistack/nky/mapper/HstPredictMapper.java
@@ -1,13 +1,18 @@
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);
}