admin
2020-09-12 2778cf2a16823f9b1153a0549b47f7b503176a17
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
package com.yeshi.buwan.domain.entity;
 
import com.google.gson.annotations.Expose;
import com.yeshi.buwan.domain.VideoResource;
 
public class PlayUrl {
    @Expose
    private VideoResource resource;
    @Expose
    private String url;
    @Expose
    private int playType;// 播放类型 0-不能播放 1-站外 2-站内
    @Expose
    private String params;
 
    public VideoResource getResource() {
        return resource;
    }
 
    public void setResource(VideoResource resource) {
        this.resource = resource;
    }
 
    public String getUrl() {
        return url;
    }
 
    public void setUrl(String url) {
        this.url = url;
    }
 
    public int getPlayType() {
        return playType;
    }
 
    public void setPlayType(int playType) {
        this.playType = playType;
    }
 
    public String getParams() {
        return params;
    }
 
    public void setParams(String params) {
        this.params = params;
    }
}