package com.vci.pagemodel;
|
|
/**
|
* ER图的了链接关系
|
* @author weidy
|
* @date 2022-03-26
|
*/
|
public class OsERRelationVO implements java.io.Serializable{
|
|
/**
|
* 序列化
|
*/
|
private static final long serialVersionUID = 329481828801600065L;
|
/**
|
* 起点
|
*/
|
private String from;
|
|
/**
|
* 目标点
|
*/
|
private String to;
|
|
/**
|
* 起点关系文本
|
*/
|
private String text;
|
|
/**
|
* 目标点关系文本
|
*/
|
private String toText;
|
|
public String getFrom() {
|
return from;
|
}
|
|
public void setFrom(String from) {
|
this.from = from;
|
}
|
|
public String getTo() {
|
return to;
|
}
|
|
public void setTo(String to) {
|
this.to = to;
|
}
|
|
public String getText() {
|
return text;
|
}
|
|
public void setText(String text) {
|
this.text = text;
|
}
|
|
public String getToText() {
|
return toText;
|
}
|
|
public void setToText(String toText) {
|
this.toText = toText;
|
}
|
|
@Override
|
public String toString() {
|
return "OsERRelationVO{" +
|
"from='" + from + '\'' +
|
", to='" + to + '\'' +
|
", text='" + text + '\'' +
|
", toText='" + toText + '\'' +
|
'}';
|
}
|
}
|