admin
2020-10-14 b2fc802bf35143ed957a86d95e2de49934ea9ea5
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package com.weikou.beibeivideo.entity;
 
import java.io.Serializable;
import java.util.List;
 
import com.google.gson.annotations.Expose;
 
/**
 * ��Ƶ����
 *
 * @author Administrator
 */
public class VideoDetailInfo implements Serializable {
 
    /**
     * serialVersionUID
     */
    private static final long serialVersionUID = 1L;
    @Expose
    private String id;
 
    @Expose
    private String name;
    @Expose
    private String createtime;
    @Expose
    private List<PlayUrl> urls;
    @Expose
    private String introduction;
    @Expose
    private String type;
    @Expose
    private String eId;
    @Expose
    private String picture;
 
    private VideoInfo video;
 
    public String getPicture() {
        return picture;
    }
 
    public void setPicture(String picture) {
        this.picture = picture;
    }
 
    public String geteId() {
        return eId;
    }
 
    public void seteId(String eId) {
        this.eId = eId;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public static long getSerialversionuid() {
        return serialVersionUID;
    }
 
    public String getIntroduction() {
        return introduction;
    }
 
    public void setIntroduction(String introduction) {
        this.introduction = introduction;
    }
 
    public List<PlayUrl> getUrls() {
        return urls;
    }
 
    public void setUrls(List<PlayUrl> urls) {
        this.urls = urls;
    }
 
    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 String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getCreatetime() {
        return createtime;
    }
 
    public void setCreatetime(String createtime) {
        this.createtime = createtime;
    }
 
    public String getTag() {
        return tag;
    }
 
    public void setTag(String tag) {
        this.tag = tag;
    }
 
    private String tag;
}