guoshilong
2023-08-11 1fee64c10ffa5961f6970378d66a56e9b9f095f3
1
2
3
4
5
6
7
8
9
10
package cn.gistack.nky.mapper;
 
import cn.gistack.nky.entity.HstPredict;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 
import java.util.List;
 
public interface HstPredictMapper extends BaseMapper<HstPredict> {
    List<HstPredict> getFutureData(String resCd, String type);
}