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;
|
}
|
}
|