ludc
2024-08-16 56de7a42d2567ce72885be8ebb1d1250d68ddd1b
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
67
68
69
70
71
72
73
74
75
package com.vci.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 + '\'' +
                '}';
    }
}