You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.0 KiB
52 lines
1.0 KiB
package com.example.datacollect.model;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public class Article implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private String title;
|
|
private String url;
|
|
private String content;
|
|
|
|
public Article() {
|
|
}
|
|
|
|
public Article(String title, String url, String content) {
|
|
this.title = title;
|
|
this.url = url;
|
|
this.content = content;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return title;
|
|
}
|
|
|
|
public void setTitle(String title) {
|
|
this.title = title;
|
|
}
|
|
|
|
public String getUrl() {
|
|
return url;
|
|
}
|
|
|
|
public void setUrl(String url) {
|
|
this.url = url;
|
|
}
|
|
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
|
|
public void setContent(String content) {
|
|
this.content = content;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "Article{"
|
|
+ "title='" + title + '\''
|
|
+ ", url='" + url + '\''
|
|
+ '}';
|
|
}
|
|
}
|