|
@@ -0,0 +1,20 @@
|
|
|
+package com.tzld.piaoquan.recommend.server.repository;
|
|
|
+
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import javax.persistence.Entity;
|
|
|
+import javax.persistence.Id;
|
|
|
+import javax.persistence.Table;
|
|
|
+
|
|
|
+@Data
|
|
|
+@Entity
|
|
|
+@Table(name = "video_demand_score")
|
|
|
+public class VideoDemandScore {
|
|
|
+ @Id
|
|
|
+ private Integer id;
|
|
|
+ private Long videoId;
|
|
|
+ private String videoLink;
|
|
|
+ private String videoTitle;
|
|
|
+ private Long demandScore;
|
|
|
+
|
|
|
+}
|