|
@@ -4,6 +4,8 @@ import lombok.Getter;
|
|
|
import lombok.NoArgsConstructor;
|
|
|
import lombok.Setter;
|
|
|
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
/**
|
|
|
* @author dyp
|
|
|
*/
|
|
@@ -12,6 +14,19 @@ import lombok.Setter;
|
|
|
@Getter
|
|
|
@Setter
|
|
|
public class Content {
|
|
|
-
|
|
|
+ private String id;
|
|
|
+ private String title;
|
|
|
+ private String content;
|
|
|
+ private String coverUrl;
|
|
|
+ private List<String> imageUrls;
|
|
|
+ private String producePlanName;
|
|
|
+ private String crawlerLink;
|
|
|
+ private String crawlerTitle;
|
|
|
+ private String crawlerCoverUrl;
|
|
|
+ private Integer crawlerViewCount;
|
|
|
+ private Integer crawlerLikeCount;
|
|
|
+ private Long crawlerPublishTimestamp;
|
|
|
+ private String crawlerAccountName;
|
|
|
+ private String filterReason;
|
|
|
}
|
|
|
|