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
38
39
40
41
42
43
44
| package com.iailab.module.model.mcs.pre.vo;
|
| import lombok.Data;
|
| import java.io.Serializable;
| import java.util.Date;
|
| /**
| * @description: 预测项影响因素结果表
| * @author: dzd
| * @date: 2025/4/14 13:36
| **/
| @Data
| public class MmPredictInfluenceFactorResultVO implements Serializable {
| private static final long serialVersionUID = 1L;
| /**
| * 预测项id
| */
| private String outputId;
| /**
| * 因素id
| */
| private String factorId;
|
| /**
| * 影响时间
| */
| private Date time;
|
| /**
| * 影响值
| */
| private Double value;
|
| /**
| * 因素预测项名称
| */
| private String factorOutputName;
|
| /**
| * 统计方式
| */
| private String pattern;
| }
|
|