ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package com.vci.pagemodel;
 
import com.vci.starter.web.pagemodel.BaseModelVO;
 
import java.util.List;
 
/**
 * ui上下文的显示对象
 * @author weidy
 * @date 2021-2-15
 */
public class UIContentVO extends BaseModelVO {
    /**
     * 序列化
     */
    private static final long serialVersionUID = 955817523919691774L;
 
    /**
     * 上下文编号
     */
    private String id;
 
    /**
     * 上下文名称
     */
    private String name;
 
    /**
     * 业务类型英文名称
     */
    private String btmTypeId;
 
    /**
     * 是否为链接类型
     */
    private boolean linkTypeFlag;
 
    /**
     * 链接类型的英文名称
     */
    private String linkTypeId;
 
    /**
     * 西区的布局内容
     */
    private List<UILayoutVO> westAreas;
 
    /**
     * 北区的布局内容
     */
    private List<UILayoutVO> northAreas;
 
    /**
     * 中心区的布局内容
     */
    private List<UILayoutVO> centerAreas;
 
    /**
     * 南区的布局内容
     */
    private List<UILayoutVO> southAreas;
 
    /**
     * 包含的布局的信息
     */
    private List<UILayoutVO> eastAreas;
 
    @Override
    public String getId() {
        return id;
    }
 
    @Override
    public void setId(String id) {
        this.id = id;
    }
 
    @Override
    public String getName() {
        return name;
    }
 
    @Override
    public void setName(String name) {
        this.name = name;
    }
 
    public String getBtmTypeId() {
        return btmTypeId;
    }
 
    public void setBtmTypeId(String btmTypeId) {
        this.btmTypeId = btmTypeId;
    }
 
    public boolean isLinkTypeFlag() {
        return linkTypeFlag;
    }
 
    public void setLinkTypeFlag(boolean linkTypeFlag) {
        this.linkTypeFlag = linkTypeFlag;
    }
 
    public String getLinkTypeId() {
        return linkTypeId;
    }
 
    public void setLinkTypeId(String linkTypeId) {
        this.linkTypeId = linkTypeId;
    }
 
    public List<UILayoutVO> getWestAreas() {
        return westAreas;
    }
 
    public void setWestAreas(List<UILayoutVO> westAreas) {
        this.westAreas = westAreas;
    }
 
    public List<UILayoutVO> getNorthAreas() {
        return northAreas;
    }
 
    public void setNorthAreas(List<UILayoutVO> northAreas) {
        this.northAreas = northAreas;
    }
 
    public List<UILayoutVO> getCenterAreas() {
        return centerAreas;
    }
 
    public void setCenterAreas(List<UILayoutVO> centerAreas) {
        this.centerAreas = centerAreas;
    }
 
    public List<UILayoutVO> getSouthAreas() {
        return southAreas;
    }
 
    public void setSouthAreas(List<UILayoutVO> southAreas) {
        this.southAreas = southAreas;
    }
 
    public List<UILayoutVO> getEastAreas() {
        return eastAreas;
    }
 
    public void setEastAreas(List<UILayoutVO> eastAreas) {
        this.eastAreas = eastAreas;
    }
 
    @Override
    public String toString() {
        return "UIContentVO{" +
                "id='" + id + '\'' +
                ", name='" + name + '\'' +
                ", btmTypeId='" + btmTypeId + '\'' +
                ", linkTypeFlag=" + linkTypeFlag +
                ", linkTypeId='" + linkTypeId + '\'' +
                ", westAreas=" + westAreas +
                ", northAreas=" + northAreas +
                ", centerAreas=" + centerAreas +
                ", southAreas=" + southAreas +
                ", eastAreas=" + eastAreas +
                "} " + super.toString();
    }
}