提交 | 用户 | 时间
|
7fd198
|
1 |
package com.iailab.module.model.mcs.pre.vo; |
潘 |
2 |
|
|
3 |
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
|
4 |
import com.alibaba.excel.annotation.ExcelProperty; |
7800dd
|
5 |
import com.fasterxml.jackson.annotation.JsonFormat; |
48c57b
|
6 |
import com.iailab.module.model.mcs.pre.entity.*; |
7fd198
|
7 |
import io.swagger.v3.oas.annotations.media.Schema; |
潘 |
8 |
import lombok.Data; |
|
9 |
|
|
10 |
import java.io.Serializable; |
|
11 |
import java.math.BigDecimal; |
6d6394
|
12 |
import java.util.Date; |
48c57b
|
13 |
import java.util.List; |
7fd198
|
14 |
|
潘 |
15 |
/** |
|
16 |
* @author PanZhibao |
|
17 |
* @date 2021年04月26日 13:27 |
|
18 |
*/ |
|
19 |
@Schema(description = "模型平台 - MmPredictItem Response VO") |
|
20 |
@Data |
|
21 |
@ExcelIgnoreUnannotated |
|
22 |
public class MmPredictItemRespVO implements Serializable { |
|
23 |
private static final long serialVersionUID = 1L; |
|
24 |
|
|
25 |
@Schema(description = "主键") |
|
26 |
@ExcelProperty("主键") |
|
27 |
private String id; |
|
28 |
|
|
29 |
@Schema(description = "编号") |
|
30 |
@ExcelProperty("编号") |
|
31 |
private String itemno; |
|
32 |
|
|
33 |
@Schema(description = "预测项名") |
|
34 |
@ExcelProperty("预测项名") |
|
35 |
private String itemname; |
|
36 |
|
|
37 |
@Schema(description = "类型ID") |
|
38 |
@ExcelProperty("类型ID") |
|
39 |
private String itemtypeid; |
|
40 |
|
|
41 |
@Schema(description = "类型名称") |
|
42 |
@ExcelProperty("类型名称") |
|
43 |
private String itemtypename; |
|
44 |
|
137356
|
45 |
@Schema(description = "预测长度") |
潘 |
46 |
@ExcelProperty("预测长度") |
|
47 |
private Integer predictlength; |
|
48 |
|
7fd198
|
49 |
@Schema(description = "粒度") |
潘 |
50 |
@ExcelProperty("粒度") |
137356
|
51 |
private Integer granularity; |
7fd198
|
52 |
|
潘 |
53 |
@Schema(description = "是否融合") |
|
54 |
@ExcelProperty("是否融合") |
137356
|
55 |
private Integer isfuse; |
7fd198
|
56 |
|
潘 |
57 |
@Schema(description = "是否检查") |
|
58 |
@ExcelProperty("是否检查") |
137356
|
59 |
private Integer workchecked; |
7fd198
|
60 |
|
潘 |
61 |
@Schema(description = "模块ID") |
|
62 |
@ExcelProperty("模块ID") |
|
63 |
private String moduleid; |
|
64 |
|
|
65 |
@Schema(description = "排序") |
|
66 |
@ExcelProperty("排序") |
|
67 |
private Integer itemorder; |
|
68 |
|
|
69 |
@Schema(description = "是否启用") |
|
70 |
@ExcelProperty("是否启用") |
137356
|
71 |
private Integer status; |
7fd198
|
72 |
|
潘 |
73 |
@Schema(description = "类别ID") |
|
74 |
@ExcelProperty("类别ID") |
|
75 |
private String categoryid; |
|
76 |
|
|
77 |
@Schema(description = "数据点ID") |
|
78 |
@ExcelProperty("数据点ID") |
|
79 |
private String pointid; |
|
80 |
|
|
81 |
@Schema(description = "数据点名称") |
|
82 |
@ExcelProperty("数据点名称") |
|
83 |
private String tagname; |
|
84 |
|
|
85 |
@Schema(description = "存放表ID") |
|
86 |
@ExcelProperty("存放表ID") |
|
87 |
private String resulttableid; |
|
88 |
|
|
89 |
@Schema(description = "存放表") |
|
90 |
@ExcelProperty("存放表") |
|
91 |
private String tablename; |
48c57b
|
92 |
|
6d6394
|
93 |
@Schema(description = "运行时间") |
潘 |
94 |
@ExcelProperty("运行时间") |
7800dd
|
95 |
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
6d6394
|
96 |
private Date lastTime; |
潘 |
97 |
|
|
98 |
@Schema(description = "运行状态") |
|
99 |
@ExcelProperty("运行状态") |
|
100 |
private Integer runStatus; |
|
101 |
|
|
102 |
@Schema(description = "运行耗时") |
|
103 |
@ExcelProperty("运行耗时") |
|
104 |
private Long duration; |
|
105 |
|
b095cf
|
106 |
@Schema(description = "管网名称") |
潘 |
107 |
@ExcelProperty("管网名称") |
|
108 |
private String modulename; |
|
109 |
|
19a4fb
|
110 |
private List<MmItemOutputRespVO> outPuts; |
D |
111 |
|
7fd198
|
112 |
} |
潘 |
113 |
|