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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package com.yeshi.base.entity.video;
 
import com.google.gson.annotations.Expose;
 
import java.io.Serializable;
 
public class PlayUrl implements Serializable {
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    @Expose
    private VideoResource resource;
    @Expose
    private String url;
    @Expose
    private int playType;// 0、不可播 1、站外-html 2、站内-播放器
    @Expose
    private String params;
    @Expose
    private String code;
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    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;
    }
}