付延余
2022-12-16 f0f8ee8c4a945adbc742d9bab69382b28ad311fb
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
63
64
65
66
package com.wgcloud.dto;
 
import com.wgcloud.entity.BaseEntity;
 
/**
 * @version v3.3
 * @ClassName:JtopuNodeDto.java
 * @author: http://www.wgstart.com
 * @date: 2021年1月16日
 * @Description: 拓扑图信息
 * @Copyright: 2019-2021 wgcloud. All rights reserved.
 */
public class TuopuNodeDto extends BaseEntity {
 
 
    private int x;
 
    private int y;
 
    private String hostname;
 
    //标识是主机,还是数通设备,1主机2数通设备
    private String type;
 
    private String state;
 
    public int getX() {
        return x;
    }
 
    public void setX(int x) {
        this.x = x;
    }
 
    public int getY() {
        return y;
    }
 
    public void setY(int y) {
        this.y = y;
    }
 
    public String getHostname() {
        return hostname;
    }
 
    public void setHostname(String hostname) {
        this.hostname = hostname;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
}