guoshilong
2023-08-11 3c096d3cfd56a23e6794f30ccd150bfe19aa4ae8
1
2
3
4
5
6
7
8
9
10
11
12
13
package cn.gistack.nky.mapper;
 
import cn.gistack.nky.entity.HstPredict;
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<HstPredict> selectTodayData(@Param("entity") HstPredict entity);
}