提交 | 用户 | 时间
|
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; |
48c57b
|
5 |
import com.iailab.module.model.mcs.pre.entity.*; |
7fd198
|
6 |
import io.swagger.v3.oas.annotations.media.Schema; |
潘 |
7 |
import lombok.Data; |
|
8 |
|
|
9 |
import java.io.Serializable; |
|
10 |
import java.math.BigDecimal; |
48c57b
|
11 |
import java.util.List; |
7fd198
|
12 |
|
潘 |
13 |
/** |
|
14 |
* @author PanZhibao |
|
15 |
* @date 2021年04月26日 13:27 |
|
16 |
*/ |
|
17 |
@Schema(description = "模型平台 - MmPredictItem Response VO") |
|
18 |
@Data |
|
19 |
@ExcelIgnoreUnannotated |
|
20 |
public class MmPredictItemRespVO implements Serializable { |
|
21 |
private static final long serialVersionUID = 1L; |
|
22 |
|
|
23 |
@Schema(description = "主键") |
|
24 |
@ExcelProperty("主键") |
|
25 |
private String id; |
|
26 |
|
|
27 |
@Schema(description = "编号") |
|
28 |
@ExcelProperty("编号") |
|
29 |
private String itemno; |
|
30 |
|
|
31 |
@Schema(description = "预测项名") |
|
32 |
@ExcelProperty("预测项名") |
|
33 |
private String itemname; |
|
34 |
|
|
35 |
@Schema(description = "类型ID") |
|
36 |
@ExcelProperty("类型ID") |
|
37 |
private String itemtypeid; |
|
38 |
|
|
39 |
@Schema(description = "类型名称") |
|
40 |
@ExcelProperty("类型名称") |
|
41 |
private String itemtypename; |
|
42 |
|
|
43 |
@Schema(description = "粒度") |
|
44 |
@ExcelProperty("粒度") |
|
45 |
private BigDecimal granularity; |
|
46 |
|
|
47 |
@Schema(description = "是否融合") |
|
48 |
@ExcelProperty("是否融合") |
|
49 |
private BigDecimal isfuse; |
|
50 |
|
|
51 |
@Schema(description = "是否检查") |
|
52 |
@ExcelProperty("是否检查") |
|
53 |
private BigDecimal workchecked; |
|
54 |
|
|
55 |
@Schema(description = "模块ID") |
|
56 |
@ExcelProperty("模块ID") |
|
57 |
private String moduleid; |
|
58 |
|
|
59 |
@Schema(description = "排序") |
|
60 |
@ExcelProperty("排序") |
|
61 |
private Integer itemorder; |
|
62 |
|
|
63 |
@Schema(description = "是否启用") |
|
64 |
@ExcelProperty("是否启用") |
|
65 |
private BigDecimal status; |
|
66 |
|
|
67 |
@Schema(description = "类别ID") |
|
68 |
@ExcelProperty("类别ID") |
|
69 |
private String categoryid; |
|
70 |
|
|
71 |
@Schema(description = "数据点ID") |
|
72 |
@ExcelProperty("数据点ID") |
|
73 |
private String pointid; |
|
74 |
|
|
75 |
@Schema(description = "数据点名称") |
|
76 |
@ExcelProperty("数据点名称") |
|
77 |
private String tagname; |
|
78 |
|
|
79 |
@Schema(description = "存放表ID") |
|
80 |
@ExcelProperty("存放表ID") |
|
81 |
private String resulttableid; |
|
82 |
|
|
83 |
@Schema(description = "存放表") |
|
84 |
@ExcelProperty("存放表") |
|
85 |
private String tablename; |
48c57b
|
86 |
|
7fd198
|
87 |
} |
潘 |
88 |
|