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.model.domain;
 
import com.zhitan.common.enums.IndexType;
 
public class EnergyIndexQuery {
 
  private String nodeId;
  private String codeOrName;
  private String indexCategory;
  private IndexType indexType;
 
  public EnergyIndexQuery() {
  }
 
  public EnergyIndexQuery(String nodeId, String codeOrName, String indexCategory,
      IndexType energyType) {
    this.nodeId = nodeId;
    this.codeOrName = codeOrName;
    this.indexCategory = indexCategory;
    this.indexType = energyType;
  }
 
  public String getNodeId() {
    return nodeId;
  }
 
  public void setNodeId(String nodeId) {
    this.nodeId = nodeId;
  }
 
  public String getCodeOrName() {
    return codeOrName;
  }
 
  public void setCodeOrName(String codeOrName) {
    this.codeOrName = codeOrName;
  }
 
  public String getIndexCategory() {
    return indexCategory;
  }
 
  public void setIndexCategory(String indexCategory) {
    this.indexCategory = indexCategory;
  }
 
  public IndexType getIndexType() {
    return indexType;
  }
 
  public void setIndexType(IndexType indexType) {
    this.indexType = indexType;
  }
}