提交 | 用户 | 时间
|
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 |
|
a4891a
|
8 |
import java.io.Serializable; |
7fd198
|
9 |
import java.math.BigDecimal; |
潘 |
10 |
|
|
11 |
/** |
|
12 |
* @author PanZhibao |
|
13 |
* @Description |
|
14 |
* @createTime 2024年09月04日 |
|
15 |
*/ |
|
16 |
@Schema(description = "模型平台 - MmItemOutput Response VO") |
|
17 |
@Data |
|
18 |
@ExcelIgnoreUnannotated |
a4891a
|
19 |
public class MmItemOutputRespVO implements Serializable { |
潘 |
20 |
private static final long serialVersionUID = 1L; |
7fd198
|
21 |
|
潘 |
22 |
@Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
23 |
@ExcelProperty("ID") |
|
24 |
private String id; |
|
25 |
|
|
26 |
@Schema(description = "预测项ID") |
|
27 |
@ExcelProperty("预测项ID") |
|
28 |
private String itemid; |
|
29 |
|
|
30 |
@Schema(description = "数据点ID") |
|
31 |
@ExcelProperty("数据点ID") |
|
32 |
private String pointid; |
|
33 |
|
|
34 |
@Schema(description = "存放表ID") |
|
35 |
@ExcelProperty("存放表ID") |
|
36 |
private String resulttableid; |
|
37 |
|
a4891a
|
38 |
@Schema(description = "输出结果") |
潘 |
39 |
@ExcelProperty("输出结果") |
|
40 |
private String resultstr; |
|
41 |
|
7fd198
|
42 |
@Schema(description = "数据点名称") |
潘 |
43 |
@ExcelProperty("数据点名称") |
|
44 |
private String tagname; |
|
45 |
|
|
46 |
@Schema(description = "排序(默认值1)") |
|
47 |
@ExcelProperty("排序") |
|
48 |
private BigDecimal outputorder; |
a4891a
|
49 |
|
潘 |
50 |
@Schema(description = "结果名称") |
|
51 |
@ExcelProperty("结果名称") |
|
52 |
private String resultName; |
7fd198
|
53 |
} |