admin
2021-03-06 7804263c6061aef813f0db27cb3046f746572606
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package com.yeshi.buwan.domain.entity;
 
import com.google.gson.annotations.Expose;
import com.yeshi.buwan.domain.VideoResource;
import org.omg.CORBA.PRIVATE_MEMBER;
 
import java.io.Serializable;
 
public class PlayUrl implements Serializable {
    @Expose
    private VideoResource resource;
    @Expose
    private String url;
    @Expose
    private int playType;// 播放类型 0-不能播放 1-站外 2-站内
    @Expose
    private String params;
    @Expose
    private String aid;//专辑ID
    @Expose
    private String vid;//视频ID
    @Expose
    private String code;//风行专用
 
    public String getCode() {
        return code;
    }
 
    public void setCode(String code) {
        this.code = code;
    }
 
    public String getAid() {
        return aid;
    }
 
    public void setAid(String aid) {
        this.aid = aid;
    }
 
    public String getVid() {
        return vid;
    }
 
    public void setVid(String vid) {
        this.vid = vid;
    }
 
    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;
    }
}