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