admin
2022-04-18 34f0d1927d662956202620b8036384a026ceca29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.weikou.beibeivideo.entity.vo;
 
import com.google.gson.annotations.Expose;
import com.weikou.beibeivideo.entity.VideoInfo;
 
public class WatchHistoryVO {
    @Expose
    private String id;
    @Expose
    private Long createTime;
    @Expose
    private VideoInfo video;
    @Expose
    private int position;
    //选中
    private boolean selected;
 
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public VideoInfo getVideo() {
        return video;
    }
 
    public void setVideo(VideoInfo video) {
        this.video = video;
    }
 
    public Long getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Long createTime) {
        this.createTime = createTime;
    }
 
    public int getPosition() {
        return position;
    }
 
    public void setPosition(int position) {
        this.position = position;
    }
 
    public boolean isSelected() {
        return selected;
    }
 
    public void setSelected(boolean selected) {
        this.selected = selected;
    }
}