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
package com.landtool.lanbase.modules.res.entity;
 
 
import java.util.List;
 
public class SimpleZiYuan {
 
    private Integer resourceid;
    private String title;
    private String keywords;
    private String resourceclass;
    private String securitylev;
    private String pubdate;
    private Integer pubunitid;
    private Long createuserid;
    private String datasources;
 
    private String createusername;//中文名
    private String pubunitname;//单位名称
    private Integer readcount;//浏览次数
    private Integer applycount;//申请量
    private String auditstatusname;//审核状态名称
    private String imgurl;//圖片地址
    private String resourcetype;
    private Integer isquanxian;//对此资源是否有权限
    private String firstmapurl;//首笔协议服务路径
 
    private Integer status; //资源状态
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public List getList() {
        return list;
    }
 
    public void setList(List list) {
        this.list = list;
    }
 
    private List list;//关联字列表
 
    public String getDatasources() {
        return datasources;
    }
 
    public void setDatasources(String datasources) {
        this.datasources = datasources;
    }
 
    public Integer getResourceid() {
        return resourceid;
    }
 
    public void setResourceid(Integer resourceid) {
        this.resourceid = resourceid;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getKeywords() {
        return keywords;
    }
 
    public void setKeywords(String keywords) {
        this.keywords = keywords;
    }
 
    public String getResourceclass() {
        return resourceclass;
    }
 
    public void setResourceclass(String resourceclass) {
        this.resourceclass = resourceclass;
    }
 
    public String getSecuritylev() {
        return securitylev;
    }
 
    public void setSecuritylev(String securitylev) {
        this.securitylev = securitylev;
    }
 
    public String getPubdate() {
        return pubdate;
    }
 
    public void setPubdate(String 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 getCreateusername() {
        return createusername;
    }
 
    public void setCreateusername(String createusername) {
        this.createusername = createusername;
    }
 
    public String getPubunitname() {
        return pubunitname;
    }
 
    public void setPubunitname(String pubunitname) {
        this.pubunitname = pubunitname;
    }
 
    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 getAuditstatusname() { return auditstatusname; }
 
    public void setAuditstatusname(String auditstatusname) {
        this.auditstatusname = auditstatusname;
    }
 
    public String getImgurl() {
        return imgurl;
    }
 
    public void setImgurl(String imgurl) {
        this.imgurl = imgurl;
    }
 
    public String getResourcetype(){
        return resourcetype;
    }
 
    public void setResourcetype(String resourcetype){
        this.resourcetype = resourcetype;
    }
 
    public Integer getIsquanxian(){
        return isquanxian;
    }
 
    public void setIsquanxian(Integer isquanxian){
        this.isquanxian = isquanxian;
    }
 
    public String getFirstmapurl(){
        return firstmapurl;
    }
 
    public void setFirstmapurl(String firstmapurl){
        this.firstmapurl = firstmapurl;
    }
}