liulingling.177216
2024-08-26 349f1cfc5fa77fbc636d542df0d8050fddec48c2
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
package com.dingzhuo.energy.data.model.domain.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import javax.validation.constraints.NotBlank;
 
 
/**
 * 能源点位监测请求 DTO
 *
 * @Author: Zhujw
 * @Date: 2023/3/6
 */
@ApiModel(value = "指标信息")
public class EnergyIndexMonitorDTO {
 
  /**
   * 点位类型
   */
  @ApiModelProperty(value = "点位类型")
  private String indexType;
 
  /**
   * 模型id
   */
  @NotBlank(message = "未找到模型信息")
  @ApiModelProperty(value = "模型id")
  private String nodeId;
 
 
  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;
  }
}