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