guoshilong
2023-11-16 00165e5d50f47c99d9eb7c2fc784bef4d3f72aca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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<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);
 
 
}