dengzedong
2024-12-23 8bf5531fcc2566bd932216e1a8dafab2a59f4f78
提交 | 用户 | 时间
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 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 PlanItemRespVO {
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
36     @Schema(description = "指标分类", example = "")
37     private String itemCategoryName;
38
39     @Schema(description = "时间粒度", example = "")
40     private String timeGranularity;
41
ed61d4 42     @Schema(description = "数据集", example = "")
43     private String dataSet;
8c1646 44
45     @Schema(description = "备注", example = "")
46     private String remark;
47
48     @Schema(description = "状态", example = "")
49     private Integer status;
50
51     @Schema(description = "创建者", example = "")
52     private String creator;
53
54     @Schema(description = "创建时间", example = "")
55     private Date createTime;
56
57     @Schema(description = "更新者", example = "")
58     private String updater;
59
60     @Schema(description = "更新时间", example = "")
61     private Date updateTime;
62 }