地质所 沉降监测网建设项目
chenhuan
2024-05-16 0fdd42e318f51f9e3c6581473416af1cca69877f
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
package com.javaweb.cms.domain;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.javaweb.common.annotation.Excel;
import com.javaweb.common.core.domain.BaseEntity;
 
/**
 * 资源对象 cms_resource
 * 
 * @author wujiyue
 * @date 2019-11-23
 */
public class Resource extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 资源ID */
    private String id;
 
    private String resourceRegion;
    /** 资源名称 */
    @Excel(name = "资源名称")
    private String title;
 
    /** 资源类型 */
    @Excel(name = "资源类型")
    private String type;
 
    /** 资源描述 */
    private String description;
 
    /** 详情 */
    private String detail;
 
    /** 资源大小 */
    @Excel(name = "资源大小")
    private String size;
 
    /** 保存路径 */
    private String savePath;
 
    /** 缩略图 */
    @Excel(name = "缩略图")
    private String coverImage;
 
    /** 审核状态 */
    @Excel(name = "审核状态")
    private String auditState;
 
    /** 评分 */
    @Excel(name = "评分")
    private Integer score;
 
    /** 下载类型 */
    @Excel(name = "下载类型")
    private String downloadType;
 
    /** 收藏数 */
    @Excel(name = "收藏数")
    private Long favouriteCount;
 
    /** 下载次数 */
    @Excel(name = "下载次数")
    private Long downloadCount;
    /** 点击次数 */
    @Excel(name = "点击次数")
    private Long hit;
    /** 点赞数 */
    @Excel(name = "点赞数")
    private Long upVote;
 
    /** 付费 */
    @Excel(name = "付费")
    private Integer free;
 
    /** 付费类型 */
    @Excel(name = "付费类型")
    private String payType;
 
    /** 花费 */
    @Excel(name = "花费")
    private Long cost;
 
    /** 标签 */
    @Excel(name = "标签")
    private String tagIds;
 
    /** 上传人用户ID */
    private String userId;
 
    /** 上传人 */
    private String userName;
 
    /** 状态 */
    @Excel(name = "状态")
    private Integer status;
    private String extraName;//扩展字段
    public String getResourceRegion() {
        return resourceRegion;
    }
 
    public void setResourceRegion(String resourceRegion) {
        this.resourceRegion = resourceRegion;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getExtraName() {
        return extraName;
    }
 
    public void setExtraName(String extraName) {
        this.extraName = extraName;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public Long getHit() {
        return hit;
    }
 
    public void setHit(Long hit) {
        this.hit = hit;
    }
 
 
    public void setType(String type) 
    {
        this.type = type;
    }
 
    public String getType() 
    {
        return type;
    }
    public void setDescription(String description) 
    {
        this.description = description;
    }
 
    public String getDescription() 
    {
        return description;
    }
    public void setDetail(String detail) 
    {
        this.detail = detail;
    }
 
    public String getDetail() 
    {
        return detail;
    }
    public void setSize(String size) 
    {
        this.size = size;
    }
 
    public String getSize() 
    {
        return size;
    }
    public void setSavePath(String savePath) 
    {
        this.savePath = savePath;
    }
 
    public String getSavePath() 
    {
        return savePath;
    }
    public void setCoverImage(String coverImage) 
    {
        this.coverImage = coverImage;
    }
 
    public String getCoverImage() 
    {
        return coverImage;
    }
    public void setAuditState(String auditState) 
    {
        this.auditState = auditState;
    }
 
    public String getAuditState() 
    {
        return auditState;
    }
    public void setScore(Integer score) 
    {
        this.score = score;
    }
 
    public Integer getScore() 
    {
        return score;
    }
    public void setDownloadType(String downloadType) 
    {
        this.downloadType = downloadType;
    }
 
    public String getDownloadType() 
    {
        return downloadType;
    }
    public void setFavouriteCount(Long favouriteCount) 
    {
        this.favouriteCount = favouriteCount;
    }
 
    public Long getFavouriteCount() 
    {
        return favouriteCount;
    }
    public void setDownloadCount(Long downloadCount) 
    {
        this.downloadCount = downloadCount;
    }
 
    public Long getDownloadCount() 
    {
        return downloadCount;
    }
    public void setUpVote(Long upVote) 
    {
        this.upVote = upVote;
    }
 
    public Long getUpVote() 
    {
        return upVote;
    }
    public void setFree(Integer free) 
    {
        this.free = free;
    }
 
    public Integer getFree() 
    {
        return free;
    }
    public void setPayType(String payType) 
    {
        this.payType = payType;
    }
 
    public String getPayType() 
    {
        return payType;
    }
    public void setCost(Long cost) 
    {
        this.cost = cost;
    }
 
    public Long getCost() 
    {
        return cost;
    }
    public void setTagIds(String tagIds) 
    {
        this.tagIds = tagIds;
    }
 
    public String getTagIds() 
    {
        return tagIds;
    }
    public void setUserId(String userId) 
    {
        this.userId = userId;
    }
 
    public String getUserId() 
    {
        return userId;
    }
    public void setUserName(String userName) 
    {
        this.userName = userName;
    }
 
    public String getUserName() 
    {
        return userName;
    }
    public void setStatus(Integer status) 
    {
        this.status = status;
    }
 
    public Integer getStatus() 
    {
        return status;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("title", getTitle())
            .append("type", getType())
            .append("description", getDescription())
            .append("detail", getDetail())
            .append("size", getSize())
            .append("savePath", getSavePath())
            .append("coverImage", getCoverImage())
            .append("auditState", getAuditState())
            .append("score", getScore())
            .append("downloadType", getDownloadType())
            .append("favouriteCount", getFavouriteCount())
            .append("downloadCount", getDownloadCount())
            .append("upVote", getUpVote())
            .append("free", getFree())
            .append("payType", getPayType())
            .append("cost", getCost())
            .append("tagIds", getTagIds())
            .append("userId", getUserId())
            .append("userName", getUserName())
            .append("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .append("status", getStatus())
            .append("remark", getRemark())
            .toString();
    }
}