潘志宝
2024-10-09 c0b8cf32504dd1a42780bb1ee06ae8a7b0d7b120
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
package com.iailab.module.data.ind.item.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import javax.validation.constraints.NotNull;
import java.math.BigDecimal;
 
/**
 * @author PanZhibao
 * @Description
 * @createTime 2024年09月11日
 */
@Schema(description = "数据平台 - 指标项创建/修改 Request VO")
@Data
public class IndItemSaveReqVO {
 
    @Schema(description = "ID")
    private String id;
 
    @Schema(description = "编码")
    private String itemNo;
 
    @Schema(description = "名称", requiredMode = Schema.RequiredMode.REQUIRED)
    @NotNull(message = "名称不能为空")
    private String itemName;
 
    @Schema(description = "指标类型", requiredMode = Schema.RequiredMode.REQUIRED)
    @NotNull(message = "指标类型不能为空")
    private String itemType;
 
    @Schema(description = "指标分类", requiredMode = Schema.RequiredMode.REQUIRED)
    @NotNull(message = "指标分类不能为空")
    private String itemCategory;
 
    @Schema(description = "系数")
    private BigDecimal coefficient;
 
    @Schema(description = "指标精度")
    private Integer precision;
 
    @Schema(description = "时间粒度")
    private String timeGranularity;
 
    @Schema(description = "数量单位")
    private String unit;
 
    @Schema(description = "备注")
    private String remark;
 
    @Schema(description = "状态(0正常 1停用)")
    private Integer status;
 
    @Schema(description = "原子指标")
    private IndItemAtomVO atomItem;
 
    @Schema(description = "派生指标")
    private IndItemDerVO derItem;
 
    @Schema(description = "计算指标")
    private IndItemCalVO calItem;
}