guoshilong
2023-08-09 f0c26b9f4a033e03dfe4710776c102440e44f9e8
1
2
3
4
5
6
7
8
9
10
11
package cn.gistack.nky.mapper;
 
import cn.gistack.nky.entity.ArimaPredict;
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);
}