|
@@ -0,0 +1,79 @@
|
|
|
+package com.tzld.longarticle.recommend.server.model.entity.longArticle;
|
|
|
+
|
|
|
+import lombok.AllArgsConstructor;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.NoArgsConstructor;
|
|
|
+
|
|
|
+import javax.persistence.*;
|
|
|
+
|
|
|
+@Data
|
|
|
+@AllArgsConstructor
|
|
|
+@NoArgsConstructor
|
|
|
+@Entity
|
|
|
+@Table(name = "publish_single_video_source")
|
|
|
+public class PublishSingleVideoSource {
|
|
|
+
|
|
|
+ @Id
|
|
|
+ @GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ @Column(name = "content_trace_id")
|
|
|
+ private String contentTraceId;
|
|
|
+
|
|
|
+ @Column(name = "article_title")
|
|
|
+ private String articleTitle;
|
|
|
+
|
|
|
+ @Column(name = "out_account_id")
|
|
|
+ private String outAccountId;
|
|
|
+
|
|
|
+ @Column(name = "out_account_name")
|
|
|
+ private String outAccountName;
|
|
|
+
|
|
|
+ @Column(name = "read_cnt")
|
|
|
+ private Integer readCount;
|
|
|
+
|
|
|
+ @Column(name = "like_cnt")
|
|
|
+ private Integer likeCount;
|
|
|
+
|
|
|
+ @Column(name = "article_index")
|
|
|
+ private Byte articleIndex;
|
|
|
+
|
|
|
+ @Column(name = "article_publish_type")
|
|
|
+ private String articlePublishType;
|
|
|
+
|
|
|
+ @Column(name = "article_url")
|
|
|
+ private String articleUrl;
|
|
|
+
|
|
|
+ @Column(name = "cover_url")
|
|
|
+ private String coverUrl;
|
|
|
+
|
|
|
+ @Column(name = "video_oss_path")
|
|
|
+ private String videoOssPath;
|
|
|
+
|
|
|
+ @Column(name = "flow_pool_level")
|
|
|
+ private Integer flowPoolLevel;
|
|
|
+
|
|
|
+ @Column(name = "bad_status")
|
|
|
+ private Byte badStatus;
|
|
|
+
|
|
|
+ @Column(name = "publish_timestamp")
|
|
|
+ private Long publishTimestamp;
|
|
|
+
|
|
|
+ @Column(name = "crawler_timestamp")
|
|
|
+ private Long crawlerTimestamp;
|
|
|
+
|
|
|
+ @Column(name = "url_unique_md5")
|
|
|
+ private String urlUniqueMd5;
|
|
|
+
|
|
|
+ @Column(name = "up_level_timestamp")
|
|
|
+ private Long upLevelTimestamp;
|
|
|
+
|
|
|
+ @Column(name = "exit_timestamp")
|
|
|
+ private Long exitTimestamp;
|
|
|
+
|
|
|
+ @Column(name = "source_account")
|
|
|
+ private Integer sourceAccount;
|
|
|
+
|
|
|
+ @Column(name = "audit_status")
|
|
|
+ private Integer auditStatus;
|
|
|
+}
|