aix
2024-07-24 2cba01a6b6f67cfa97d0c4e0cc589302fab817ba
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
30
31
32
33
34
35
36
37
package cn.gistack.nky.requestpojo;
 
import cn.gistack.nky.resultpojo.DataResChildrenPo;
import lombok.Data;
 
/**
 * @PROJECT_NAME: skjcmanager
 * @DESCRIPTION: arima预测请求参数
 * @USER: aix
 * @DATE: 2023/7/31 11:02
 */
@Data
public class ArimaPredictReqPo {
 
    private String damId;
 
    private String pointId;
 
    private String type;
 
    private int number;
 
    public ArimaPredictReqPo() {};
 
    public ArimaPredictReqPo(String damId, String pointId, String type) {
        this.damId = damId;
        this.pointId = pointId;
        this.type = type;
    }
 
    public ArimaPredictReqPo (DataResChildrenPo pojo, String type) {
        this.damId = pojo.getRes_cd();
        this.pointId = pojo.getCd();
        this.type = type;
    }
 
}