提交 | 用户 | 时间
|
e41062
|
1 |
package com.iailab.module.data.ind.item.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.util.Date; |
|
9 |
|
|
10 |
/** |
|
11 |
* @author PanZhibao |
|
12 |
* @Description |
|
13 |
* @createTime 2024年09月11日 |
|
14 |
*/ |
|
15 |
@Schema(description = "数据平台 - 指标项 Response VO") |
|
16 |
@Data |
|
17 |
@ExcelIgnoreUnannotated |
|
18 |
public class IndItemRespVO { |
|
19 |
|
|
20 |
@Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024") |
|
21 |
@ExcelProperty("ID") |
|
22 |
private String id; |
|
23 |
|
|
24 |
@Schema(description = "指标编码", example = "") |
|
25 |
private String itemNo; |
|
26 |
|
|
27 |
@Schema(description = "指标名称", example = "") |
|
28 |
private String itemName; |
|
29 |
|
|
30 |
@Schema(description = "指标类型", example = "") |
|
31 |
private String itemType; |
|
32 |
|
|
33 |
@Schema(description = "指标分类", example = "") |
|
34 |
private String itemCategory; |
|
35 |
|
68413a
|
36 |
@Schema(description = "指标分类", example = "") |
J |
37 |
private String itemCategoryName; |
|
38 |
|
e41062
|
39 |
@Schema(description = "转换系数", example = "") |
68413a
|
40 |
private String coefficient; |
e41062
|
41 |
|
潘 |
42 |
@Schema(description = "指标精度", example = "") |
|
43 |
private Integer precision; |
|
44 |
|
|
45 |
@Schema(description = "时间粒度", example = "") |
|
46 |
private String timeGranularity; |
|
47 |
|
|
48 |
@Schema(description = "数量单位", example = "") |
|
49 |
private String unit; |
|
50 |
|
|
51 |
@Schema(description = "备注", example = "") |
|
52 |
private String remark; |
|
53 |
|
|
54 |
@Schema(description = "状态", example = "") |
|
55 |
private Integer status; |
|
56 |
|
|
57 |
@Schema(description = "创建者", example = "") |
|
58 |
private String creator; |
|
59 |
|
|
60 |
@Schema(description = "创建时间", example = "") |
|
61 |
private Date createTime; |
|
62 |
|
|
63 |
@Schema(description = "更新者", example = "") |
|
64 |
private String updater; |
|
65 |
|
|
66 |
@Schema(description = "更新时间", example = "") |
|
67 |
private Date updateTime; |
68413a
|
68 |
|
J |
69 |
private String atomItemId; |
|
70 |
|
cf757d
|
71 |
private IndItemAtomVO atomItem; |
68413a
|
72 |
|
cf757d
|
73 |
private IndItemDerVO derItem; |
68413a
|
74 |
|
cf757d
|
75 |
private IndItemCalVO calItem; |
e41062
|
76 |
} |