package cn.gistack.nky.service;
|
|
import cn.gistack.nky.entity.ArimaPredict;
|
import cn.gistack.nky.vo.ArimaPredictVO;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
|
public interface IArimaPredictService extends IService<ArimaPredict> {
|
|
/**
|
* 请求预测
|
* @param type
|
*/
|
void getData(String type);
|
|
/**
|
* 请求数据预测
|
* @param type
|
*/
|
void predictData(String type);
|
|
/**
|
* 获取渗压预测数据
|
* @param resCd
|
* @return
|
*/
|
List<ArimaPredictVO> getFutureData(String resCd, String type);
|
}
|