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
48
49
50
package com.dingzhuo.energy.project.basicSetup.domain;
 
import java.util.List;
 
/**
 * 组态图对象 sys_equipmentfile
 *
 * @author sys
 * @date 2020-02-24
 */
public class SysEquipmentfile {
 
  private String nodeId;
  private String filePath;
  private String svgType;
  private List<SysSvgInfo> infoList;
 
  public String getNodeId() {
    return nodeId;
  }
 
  public void setNodeId(String nodeId) {
    this.nodeId = nodeId;
  }
 
  public String getFilePath() {
    return filePath;
  }
 
  public void setFilePath(String filePath) {
    this.filePath = filePath;
  }
 
  public List<SysSvgInfo> getInfoList() {
    return infoList;
  }
 
  public void setInfoList(
      List<SysSvgInfo> infoList) {
    this.infoList = infoList;
  }
 
  public String getSvgType() {
    return svgType;
  }
 
  public void setSvgType(String svgType) {
    this.svgType = svgType;
  }
}