xiejun
2024-08-27 ca3880ac5dde98928d6ae0d0c66a0e53c4cbc6c7
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;
 
/**
 * 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 + '\'' +
                '}';
    }
}