潘志宝
2024-11-15 4be7d863a161b64f8592a789d699e807545e7dc6
提交 | 用户 | 时间
8c1646 1 package com.iailab.module.data.plan.item.vo;
2
3 import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
4 import com.alibaba.excel.annotation.ExcelProperty;
5 import com.iailab.module.data.ind.item.vo.IndItemAtomVO;
6 import com.iailab.module.data.ind.item.vo.IndItemCalVO;
7 import com.iailab.module.data.ind.item.vo.IndItemDerVO;
8 import io.swagger.v3.oas.annotations.media.Schema;
9 import lombok.Data;
10
11 import java.util.Date;
12
13 /**
14  * @author PanZhibao
15  * @Description
16  * @createTime 2024年09月11日
17  */
18 @Schema(description = "数据平台 - 指标项 Response VO")
19 @Data
20 @ExcelIgnoreUnannotated
21 public class PlanItemRespVO {
22
23     @Schema(description = "ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
24     @ExcelProperty("ID")
25     private String id;
26
27     @Schema(description = "指标编码", example = "")
28     private String itemNo;
29
30     @Schema(description = "指标名称", example = "")
31     private String itemName;
32
33     @Schema(description = "指标类型", example = "")
34     private String itemType;
35
36     @Schema(description = "指标分类", example = "")
37     private String itemCategory;
38
39     @Schema(description = "指标分类", example = "")
40     private String itemCategoryName;
41
42     @Schema(description = "时间粒度", example = "")
43     private String timeGranularity;
44
ed61d4 45     @Schema(description = "数据集", example = "")
46     private String dataSet;
8c1646 47
48     @Schema(description = "备注", example = "")
49     private String remark;
50
51     @Schema(description = "状态", example = "")
52     private Integer status;
53
54     @Schema(description = "创建者", example = "")
55     private String creator;
56
57     @Schema(description = "创建时间", example = "")
58     private Date createTime;
59
60     @Schema(description = "更新者", example = "")
61     private String updater;
62
63     @Schema(description = "更新时间", example = "")
64     private Date updateTime;
65 }