guoshilong
2023-11-16 00165e5d50f47c99d9eb7c2fc784bef4d3f72aca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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);
}