package com.vci.web.pageModel;
|
|
/**
|
* E-R图的节点属性
|
* @author weidy
|
* @date 2022-03-26
|
*/
|
public class OsERNodePropertyVO implements java.io.Serializable{
|
|
/**
|
* 序列化
|
*/
|
private static final long serialVersionUID = 3140638404223074181L;
|
/**
|
* 属性名称
|
*/
|
private String name;
|
|
/**
|
* 是否主键
|
*/
|
private boolean isKey;
|
|
/**
|
* 数字
|
*/
|
private String figure;
|
|
/**
|
* 颜色
|
*/
|
private String color = "#1c446f";
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public boolean isKey() {
|
return isKey;
|
}
|
|
public void setKey(boolean key) {
|
isKey = key;
|
}
|
|
public String getFigure() {
|
return figure;
|
}
|
|
public void setFigure(String figure) {
|
this.figure = figure;
|
}
|
|
public String getColor() {
|
return color;
|
}
|
|
public void setColor(String color) {
|
this.color = color;
|
}
|
|
@Override
|
public String toString() {
|
return "OsERNodePropertyVO{" +
|
"name='" + name + '\'' +
|
", isKey=" + isKey +
|
", figure='" + figure + '\'' +
|
", color='" + color + '\'' +
|
'}';
|
}
|
}
|