package com.vci.web.pageModel;
|
|
/**
|
* 链接类型的信息
|
* @author weidy
|
* @date 2021-2-12
|
*/
|
public class LinkTypeInfoVO implements java.io.Serializable{
|
|
/**
|
* 序列化
|
*/
|
private static final long serialVersionUID = -2562725555768039608L;
|
/**
|
* 链接类型英文名称
|
*/
|
private String name;
|
|
/**
|
* 是否反向
|
*/
|
private boolean direction;
|
|
/**
|
* 层级
|
*/
|
private int level;
|
|
/**
|
* to端的业务类型
|
*/
|
private String toBtwname;
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public boolean isDirection() {
|
return direction;
|
}
|
|
public void setDirection(boolean direction) {
|
this.direction = direction;
|
}
|
|
public int getLevel() {
|
return level;
|
}
|
|
public void setLevel(int level) {
|
this.level = level;
|
}
|
|
public String getToBtwname() {
|
return toBtwname;
|
}
|
|
public void setToBtwname(String toBtwname) {
|
this.toBtwname = toBtwname;
|
}
|
|
@Override
|
public String toString() {
|
return "LinkTypeInfoVO{" +
|
"name='" + name + '\'' +
|
", direction=" + direction +
|
", level=" + level +
|
", toBtwname='" + toBtwname + '\'' +
|
'}';
|
}
|
}
|