Ver código fonte

content-service 删除无用的 UserCollection.java

reghao 4 meses atrás
pai
commit
22f1fba69d

+ 0 - 33
content/content-service/src/main/java/cn/reghao/tnb/content/app/vod/model/po/UserCollection.java

@@ -1,33 +0,0 @@
-package cn.reghao.tnb.content.app.vod.model.po;
-
-import cn.reghao.jutil.jdk.db.BaseObject;
-import lombok.Getter;
-import lombok.NoArgsConstructor;
-import lombok.Setter;
-
-import java.time.LocalDateTime;
-
-/**
- * @author reghao
- * @date 2023-01-30 16:41:15
- */
-@NoArgsConstructor
-@Setter
-@Getter
-public class UserCollection extends BaseObject<Integer> {
-    private Long userId;
-    private String videoId;
-    private Long collectionId;
-    private String collectionName;
-    private Integer contentType;
-    private String contentId;
-    private LocalDateTime createAt;
-    private LocalDateTime collectAt;
-    private Long collectBy;
-
-    public UserCollection(Long userId, String videoId) {
-        this.userId = userId;
-        this.videoId = videoId;
-        this.createAt = LocalDateTime.now();
-    }
-}