ludc
2025-01-10 19ec0269a9ce3a57ccfcd1d36585bb1c31977b60
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;
 
/**
 * 链接类型的信息
 * @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 + '\'' +
                '}';
    }
}