提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.pre.dto; |
潘 |
2 |
|
|
3 |
import lombok.Data; |
|
4 |
|
|
5 |
/** |
|
6 |
* @author PanZhibao |
|
7 |
* @date 2021年07月23日 10:13 |
|
8 |
*/ |
|
9 |
@Data |
|
10 |
public class MmItemOutputDTO { |
|
11 |
/** |
|
12 |
* 主键 |
|
13 |
*/ |
|
14 |
private String id; |
|
15 |
|
|
16 |
/** |
|
17 |
* 预测项ID |
|
18 |
*/ |
|
19 |
private String itemid; |
|
20 |
|
|
21 |
/** |
|
22 |
* 数据点ID |
|
23 |
*/ |
|
24 |
private String pointid; |
|
25 |
|
|
26 |
/** |
|
27 |
* 存放表ID |
|
28 |
*/ |
|
29 |
private String resulttableid; |
|
30 |
|
|
31 |
/** |
|
32 |
* 数据点名称 |
|
33 |
*/ |
|
34 |
private String tagname; |
|
35 |
|
|
36 |
/** |
|
37 |
* 预测项名称 |
|
38 |
*/ |
|
39 |
private String itemname; |
|
40 |
} |