ustcyc
2025-01-07 de5d55508afd27fb2b47e6d4d6fd9984525c222c
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
package com.zhitan.realtimedata.domain.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import javax.validation.constraints.NotBlank;
 
/**
 * @Description 能源点位监测请求 DTO
 * @Author zhoubg
 * @date 2024-10-15
 **/
@ApiModel(value = "指标信息")
public class EnergyIndexMonitorDTO {
    /**
     * 点位类型
     */
    @ApiModelProperty(value = "点位类型")
    private String indexType;
 
    /**
     * 模型id
     */
    @NotBlank(message = "未找到模型信息")
    @ApiModelProperty(value = "模型id")
    private String nodeId;
 
    @ApiModelProperty(value = "能源类型")
    private String energyType;
 
    public String getIndexType() {
        return indexType;
    }
 
    public void setIndexType(String indexType) {
        this.indexType = indexType;
    }
 
    public String getNodeId() {
        return nodeId;
    }
 
    public void setNodeId(String nodeId) {
        this.nodeId = nodeId;
    }
 
    public String getEnergyType() {
        return energyType;
    }
 
    public void setEnergyType(String energyType) {
        this.energyType = energyType;
    }
}