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
package com.hp.cmsz.entity;
import java.util.Date;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
/**
* twitter_data_t表对应的实体类
*
*
*/
@Entity
@Table(name="twitter_data_t")
public class CrawlTwitterData{
private Long twitterDataId;
private String twitterContent;
private String twitterAuthor;
private Long commentNum;
private Long transmitNum;
private Date issueTime;
private Long sourceTwitterDataId;
private String twitterAuthorLocation;
private String twitterAuthorConstellation;
private String twitterAuthorLevel;
private String twitterAuthorFootprint;
private String twitterAuthorIntro;
private Long twitterAuthorFans;
private Long twitterAuthorAge;
private Long urlId;
private String urlContent;
private Date fetchDate;
private Date crtTime;
private Long batchId;
private String keyWordName;
private String dataFetchType;
@Id
@GeneratedValue(strategy=GenerationType.IDENTITY)
public Long getTwitterDataId() {
return twitterDataId;
}
public void setTwitterDataId(Long twitterDataId) {
this.twitterDataId = twitterDataId;
}
public String getTwitterContent() {
return twitterContent;
}
public void setTwitterContent(String twitterContent) {
this.twitterContent = twitterContent;
}
public String getTwitterAuthor() {
return twitterAuthor;
}
public void setTwitterAuthor(String twitterAuthor) {
this.twitterAuthor = twitterAuthor;
}
public Long getCommentNum() {
return commentNum;
}
public void setCommentNum(Long commentNum) {
this.commentNum = commentNum;
}
public Long getTransmitNum() {
return transmitNum;
}
public void setTransmitNum(Long transmitNum) {
this.transmitNum = transmitNum;
}
public Date getIssueTime() {
return issueTime;
}
public void setIssueTime(Date issueTime) {
this.issueTime = issueTime;
}
public Long getSourceTwitterDataId() {
return sourceTwitterDataId;
}
public void setSourceTwitterDataId(Long sourceTwitterDataId) {
this.sourceTwitterDataId = sourceTwitterDataId;
}
public String getTwitterAuthorLocation() {
return twitterAuthorLocation;
}
public void setTwitterAuthorLocation(String twitterAuthorLocation) {
this.twitterAuthorLocation = twitterAuthorLocation;
}
public String getTwitterAuthorConstellation() {
return twitterAuthorConstellation;
}
public void setTwitterAuthorConstellation(String twitterAuthorConstellation) {
this.twitterAuthorConstellation = twitterAuthorConstellation;
}
public String getTwitterAuthorLevel() {
return twitterAuthorLevel;
}
public void setTwitterAuthorLevel(String twitterAuthorLevel) {
this.twitterAuthorLevel = twitterAuthorLevel;
}
public String getTwitterAuthorFootprint() {
return twitterAuthorFootprint;
}
public void setTwitterAuthorFootprint(String twitterAuthorFootprint) {
this.twitterAuthorFootprint = twitterAuthorFootprint;
}
public String getTwitterAuthorIntro() {
return twitterAuthorIntro;
}
public void setTwitterAuthorIntro(String twitterAuthorIntro) {
this.twitterAuthorIntro = twitterAuthorIntro;
}
public Long getTwitterAuthorFans() {
return twitterAuthorFans;
}
public void setTwitterAuthorFans(Long twitterAuthorFans) {
this.twitterAuthorFans = twitterAuthorFans;
}
public Long getTwitterAuthorAge() {
return twitterAuthorAge;
}
public void setTwitterAuthorAge(Long twitterAuthorAge) {
this.twitterAuthorAge = twitterAuthorAge;
}
public Long getUrlId() {
return urlId;
}
public void setUrlId(Long urlId) {
this.urlId = urlId;
}
public String getUrlContent() {
return urlContent;
}
public void setUrlContent(String urlContent) {
this.urlContent = urlContent;
}
public Date getFetchDate() {
return fetchDate;
}
public void setFetchDate(Date fetchDate) {
this.fetchDate = fetchDate;
}
public Date getCrtTime() {
return crtTime;
}
public void setCrtTime(Date crtTime) {
this.crtTime = crtTime;
}
public Long getBatchId() {
return batchId;
}
public void setBatchId(Long batchId) {
this.batchId = batchId;
}
public String getKeyWordName() {
return keyWordName;
}
public void setKeyWordName(String keyWordName) {
this.keyWordName = keyWordName;
}
public String getDataFetchType() {
return dataFetchType;
}
public void setDataFetchType(String dataFetchType) {
this.dataFetchType = dataFetchType;
}
}