kimi
2020-04-22 f9a4612e1f3ed276f5eb057fd7d69d54e71aec41
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
package com.highdatas.mdm.entity;
 
import com.baomidou.mybatisplus.activerecord.Model;
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableName;
import com.highdatas.mdm.pojo.SysAssembleCheckType;
 
import java.io.Serializable;
import java.util.Date;
import java.util.List;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author kimi
 * @since 2020-04-15
 */
@TableName("sys_view")
public class SysView extends Model<SysView> {
 
    private static final long serialVersionUID = 1L;
 
    private String id;
 
    private String code;
 
    private String name;
 
    @TableField("base_maintain")
    private String baseMaintain;
 
    private String fields;
    private ViewStatus status;
 
    @TableField("mapping_table")
    private String mappingTable;
    @TableField("mapping_field")
    private String mappingField;
 
    @TableField("empty_data")
    private Boolean emptyData;
 
    private Boolean increment;
 
    @TableField("create_time")
    private Date createTime;
    @TableField("update_time")
    private Date updateTime;
 
    @TableField("user_id")
    private String userId;
    @TableField("menu_id")
    private String menuId;
 
    @TableField("view_table_name")
    private String viewTableName;
 
    @TableField("check_type")
    private SysAssembleCheckType checkType;
    @TableField("check_field")
    private String checkField;
 
 
    private Boolean subscribe;
    private Boolean active;
    @TableField("need_update")
    private Boolean needUpdate;
 
    private transient String userName;
    private transient String baseTableName;
    private transient String baseVersion;
    private transient List<SysViewJoin> viewJoinList;
    private transient String subMenuName;
    private transient String menuName;
    private transient List<SysViewLogicmap> logicmapList;
 
    public List<SysViewLogicmap> getLogicmapList() {
        return logicmapList;
    }
 
    public void setLogicmapList(List<SysViewLogicmap> logicmapList) {
        this.logicmapList = logicmapList;
    }
 
    public String getCheckField() {
        return checkField;
    }
 
    public SysView setCheckField(String checkField) {
        this.checkField = checkField;
        return this;
    }
 
    public String getMenuId() {
        return menuId;
    }
 
    public SysView setMenuId(String menuId) {
        this.menuId = menuId;
        return this;
    }
 
    public String getMenuName() {
        return menuName;
    }
 
    public void setMenuName(String menuName) {
        this.menuName = menuName;
    }
 
    public ViewStatus getStatus() {
        return status;
    }
 
    public SysView setStatus(ViewStatus status) {
        this.status = status;
        return this;
    }
 
    public Boolean getIncrement() {
        return increment;
    }
 
    public SysView setIncrement(Boolean increment) {
        this.increment = increment;
        return this;
    }
 
    public String getViewTableName() {
        return viewTableName;
    }
 
    public SysView setViewTableName(String viewTableName) {
        this.viewTableName = viewTableName;
        return this;
    }
 
    public SysAssembleCheckType getCheckType() {
        return checkType;
    }
 
    public SysView setCheckType(SysAssembleCheckType checkType) {
        this.checkType = checkType;
        return this;
    }
 
    public Boolean getNeedUpdate() {
        return needUpdate;
    }
 
    public SysView setNeedUpdate(Boolean needUpdate) {
        this.needUpdate = needUpdate;
        return this;
    }
 
    public Boolean getEmptyData() {
        return emptyData;
    }
 
    public SysView setEmptyData(Boolean emptyData) {
        this.emptyData = emptyData;
        return this;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public SysView setCreateTime(Date createTime) {
        this.createTime = createTime;
        return this;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public SysView setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
        return this;
    }
 
    public Boolean getSubscribe() {
        return subscribe;
    }
 
    public SysView setSubscribe(Boolean subscribe) {
        this.subscribe = subscribe;
        return this;
    }
 
    public Boolean getActive() {
        return active;
    }
 
    public SysView setActive(Boolean active) {
        this.active = active;
        return this;
    }
 
    public String getMappingField() {
        return mappingField;
    }
 
    public SysView setMappingField(String mappingField) {
        this.mappingField = mappingField;
        return this;
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public String getBaseTableName() {
        return baseTableName;
    }
 
    public void setBaseTableName(String baseTableName) {
        this.baseTableName = baseTableName;
    }
 
    public String getBaseVersion() {
        return baseVersion;
    }
 
    public void setBaseVersion(String baseVersion) {
        this.baseVersion = baseVersion;
    }
 
    public List<SysViewJoin> getViewJoinList() {
        return viewJoinList;
    }
 
    public void setViewJoinList(List<SysViewJoin> viewJoinList) {
        this.viewJoinList = viewJoinList;
    }
 
    public String getId() {
        return id;
    }
 
    public SysView setId(String id) {
        this.id = id;
        return this;
    }
    public String getCode() {
        return code;
    }
 
    public SysView setCode(String code) {
        this.code = code;
        return this;
    }
    public String getName() {
        return name;
    }
 
    public SysView setName(String name) {
        this.name = name;
        return this;
    }
    public String getBaseMaintain() {
        return baseMaintain;
    }
 
    public SysView setBaseMaintain(String baseMaintain) {
        this.baseMaintain = baseMaintain;
        return this;
    }
    public String getFields() {
        return fields;
    }
 
    public SysView setFields(String fields) {
        this.fields = fields;
        return this;
    }
    public String getMappingTable() {
        return mappingTable;
    }
 
    public SysView setMappingTable(String mappingTable) {
        this.mappingTable = mappingTable;
        return this;
    }
    public String getUserId() {
        return userId;
    }
 
    public SysView setUserId(String userId) {
        this.userId = userId;
        return this;
    }
 
    @Override
    protected Serializable pkVal() {
        return this.id;
    }
 
    @Override
    public String toString() {
        return "SysView{" +
        "id=" + id +
        ", code=" + code +
        ", name=" + name +
        ", baseMaintain=" + baseMaintain +
        ", fields=" + fields +
        ", mappingTable=" + mappingTable +
        ", userId=" + userId +
        "}";
    }
 
    public void setSubMenuName(String subMenuName) {
        this.subMenuName = subMenuName;
    }
 
    public String getSubMenuName() {
        return subMenuName;
    }
 
}