1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package cn.gistack.nky.service;
|
| import cn.gistack.nky.entity.ArimaPredict;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| public interface IArimaPredictService extends IService<ArimaPredict> {
|
| void getData(String type);
|
| /**
| * 请求数据预测
| * @param type
| */
| void predictData(String type);
| }
|
|