2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
package com.landtool.lanbase.modules.res.entity;
 
public class Res_MainInfo {
 
    private Integer resourceid;
    private Integer catlogid;
    private String title;
    private String abbreviation;
    private String pingyinfiirst;
    private String catlogcode;
    private String keywords;
    private String description;
    private String desurl;
    private String imgurl;
    private String resourceclass;
    private String datasources;
    private java.sql.Timestamp productiontime;
    private String updatetimes;
    private java.sql.Timestamp pubdate;
    private Integer pubunitid;
    private Long createuserid;
    private String administrativeid;
    private String securitylev;
    private String sharprotocol;
    private Integer espproxy;
    private String username;
    private String password;
    private String token;
    private Integer resourcestatus;
    private Integer auditstatus;
 
    private Integer displayby2d;
    private Integer displayby3d;
    private Integer orderid;
    private java.sql.Timestamp createdate;
    private java.sql.Timestamp lasteditdate;
    private String remark;
    private String pubdateBegin;
    private String pubdatefinish;
    private Integer iscollect;
    private Integer cparentid;
    private Integer t;
    private String sort;
    private String dir;
    // modified by qufangxu
    private Integer insteadaudit;
    private String ExistPermission;//超级管理员字段
    private Integer readcount;//浏览量
    private Integer applycount;//申请量
 
    private String selectids;
    private String GraphicStyle;
 
 
    //new ADD 2020118 ZSX
    private Long expiration;// token失效
 
    private Integer spcStatus;
 
    public Integer getSpcStatus() {
        return spcStatus;
    }
 
    public void setSpcStatus(Integer spcStatus) {
        this.spcStatus = spcStatus;
    }
 
    public Long getExpiration() {
        return expiration;
    }
 
    public void setExpiration(Long expiration) {
        this.expiration = expiration;
    }
 
    public String getGraphicStyle() {
        return GraphicStyle;
    }
 
    public void setGraphicStyle(String graphicStyle) {
        GraphicStyle = graphicStyle;
    }
 
    public String getExistPermission() {
        return ExistPermission;
    }
 
    public void setExistPermission(String existPermission) {
        ExistPermission = existPermission;
    }
 
    public Integer getInsteadaudit() {
        return insteadaudit;
    }
 
    public void setInsteadaudit(Integer insteadaudit) {
        this.insteadaudit = insteadaudit;
    }
 
    public String getSort() {
        return sort;
    }
 
    public void setSort(String sort) {
        this.sort = sort;
    }
 
    public String getDir() {
        return dir;
    }
 
    public void setDir(String dir) {
        this.dir = dir;
    }
 
    public String getPubdatefinish() {
        return pubdatefinish;
    }
 
    public void setPubdatefinish(String pubdatefinish) {
        this.pubdatefinish = pubdatefinish;
    }
 
    public String getPubdateBegin() {
        return pubdateBegin;
    }
 
    public void setPubdateBegin(String pubdateBegin) {
        this.pubdateBegin = pubdateBegin;
    }
 
    public Integer getResourceid() {
        return resourceid;
    }
 
    public void setResourceid(Integer resourceid) {
        this.resourceid = resourceid;
    }
 
    public Integer getCatlogid() {
        return catlogid;
    }
 
    public void setCatlogid(Integer catlogid) {
        this.catlogid = catlogid;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getAbbreviation() {
        return abbreviation;
    }
 
    public void setAbbreviation(String abbreviation) {
        this.abbreviation = abbreviation;
    }
 
    public String getPingyinfiirst() {
        return pingyinfiirst;
    }
 
    public void setPingyinfiirst(String pingyinfiirst) {
        this.pingyinfiirst = pingyinfiirst;
    }
 
    public String getCatlogcode() {
        return catlogcode;
    }
 
    public void setCatlogcode(String catlogcode) {
        this.catlogcode = catlogcode;
    }
 
    public String getKeywords() {
        return keywords;
    }
 
    public void setKeywords(String keywords) {
        this.keywords = keywords;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getDesurl() {
        return desurl;
    }
 
    public void setDesurl(String desurl) {
        this.desurl = desurl;
    }
 
    public String getImgurl() {
        return imgurl;
    }
 
    public void setImgurl(String imgurl) {
        this.imgurl = imgurl;
    }
 
    public String getResourceclass() {
        return resourceclass;
    }
 
    public void setResourceclass(String resourceclass) {
        this.resourceclass = resourceclass;
    }
 
    public String getDatasources() {
        return datasources;
    }
 
    public void setDatasources(String datasources) {
        this.datasources = datasources;
    }
 
    public java.sql.Timestamp getProductiontime() {
        return productiontime;
    }
 
    public void setProductiontime(java.sql.Timestamp productiontime) {
        this.productiontime = productiontime;
    }
 
    public String getUpdatetimes() {
        return updatetimes;
    }
 
    public void setUpdatetimes(String updatetimes) {
        this.updatetimes = updatetimes;
    }
 
    public java.sql.Timestamp getPubdate() {
        return pubdate;
    }
 
    public void setPubdate(java.sql.Timestamp pubdate) {
        this.pubdate = pubdate;
    }
 
    public Integer getPubunitid() {
        return pubunitid;
    }
 
    public void setPubunitid(Integer pubunitid) {
        this.pubunitid = pubunitid;
    }
 
    public Long getCreateuserid() {
        return createuserid;
    }
 
    public void setCreateuserid(Long createuserid) {
        this.createuserid = createuserid;
    }
 
    public String getAdministrativeid() {
        return administrativeid;
    }
 
    public void setAdministrativeid(String administrativeid) {
        this.administrativeid = administrativeid;
    }
 
    public String getSecuritylev() {
        return securitylev;
    }
 
    public void setSecuritylev(String securitylev) {
        this.securitylev = securitylev;
    }
 
    public String getSharprotocol() {
        return sharprotocol;
    }
 
    public void setSharprotocol(String sharprotocol) {
        this.sharprotocol = sharprotocol;
    }
 
    public Integer getEspproxy() {
        return espproxy;
    }
 
    public void setEspproxy(Integer espproxy) {
        this.espproxy = espproxy;
    }
 
    public String getUsername() {
        return username;
    }
 
    public void setUsername(String username) {
        this.username = username;
    }
 
    public String getPassword() {
        return password;
    }
 
    public void setPassword(String password) {
        this.password = password;
    }
 
    public String getToken() {
        return token;
    }
 
    public void setToken(String token) {
        this.token = token;
    }
 
    public Integer getResourcestatus() {
        return resourcestatus;
    }
 
    public void setResourcestatus(Integer resourcestatus) {
        this.resourcestatus = resourcestatus;
    }
 
    public Integer getAuditstatus() {
        return auditstatus;
    }
 
    public void setAuditstatus(Integer auditstatus) {
        this.auditstatus = auditstatus;
    }
 
    public Integer getOrderid() {
        return orderid;
    }
 
    public void setOrderid(Integer orderid) {
        this.orderid = orderid;
    }
 
    public java.sql.Timestamp getCreatedate() {
        return createdate;
    }
 
    public void setCreatedate(java.sql.Timestamp createdate) {
        this.createdate = createdate;
    }
 
    public java.sql.Timestamp getLasteditdate() {
        return lasteditdate;
    }
 
    public void setLasteditdate(java.sql.Timestamp lasteditdate) {
        this.lasteditdate = lasteditdate;
    }
 
    public String getRemark() {
        return remark;
    }
 
    public void setRemark(String remark) {
        this.remark = remark;
    }
 
    public Integer getDisplayby2d() {
        return displayby2d;
    }
 
    public void setDisplayby2d(Integer displayby2d) {
        this.displayby2d = displayby2d;
    }
 
    public Integer getDisplayby3d() {
        return displayby3d;
    }
 
    public void setDisplayby3d(Integer displayby3d) {
        this.displayby3d = displayby3d;
    }
 
    public Integer getIscollect() {
        return iscollect;
    }
 
    public void setIscollect(Integer iscollect) {
        this.iscollect = iscollect;
    }
 
    public Integer getCParentid() {
        return cparentid;
    }
 
    public void setCParentid(Integer cparentid) {
        this.cparentid = cparentid;
    }
 
    public Integer gett() {
        return t;
    }
 
    public void sett(Integer t) {
        this.t = t;
    }
 
    public Integer getReadcount() {
        return readcount;
    }
 
    public void setReadcount(Integer readcount) {
        this.readcount = readcount;
    }
 
    public Integer getApplycount() {
        return applycount;
    }
 
    public void setApplycount(Integer applycount) {
        this.applycount = applycount;
    }
 
    public String getSelectids() {
        return selectids;
    }
 
    public void setSelectids(String selectids) {
        this.selectids = selectids;
    }
 
    private String faburen;
 
    public String getFaburen() {
        return faburen;
    }
 
    public void setFaburen(String faburen) {
        this.faburen = faburen;
    }
 
 
}