admin
2022-01-28 760aee20870a34e6130a1c12237c5b747e2b00bd
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
package com.yeshi.video.entity;
 
import com.yeshi.base.entity.video.PlayUrl;
import com.yeshi.base.entity.video.VideoInfo;
 
//风行播放器需要的信息
public class FunshionPlayInfo {
    private VideoInfo videoInfo;
    private int position;
    private PlayUrl playUrl;
    private boolean collected;
 
    public int getPosition() {
        return position;
    }
 
    public void setPosition(int position) {
        this.position = position;
    }
 
    public VideoInfo getVideoInfo() {
        return videoInfo;
    }
 
    public void setVideoInfo(VideoInfo videoInfo) {
        this.videoInfo = videoInfo;
    }
 
    public PlayUrl getPlayUrl() {
        return playUrl;
    }
 
    public void setPlayUrl(PlayUrl playUrl) {
        this.playUrl = playUrl;
    }
 
    public boolean isCollected() {
        return collected;
    }
 
    public void setCollected(boolean collected) {
        this.collected = collected;
    }
}