admin
2021-01-04 aa6ef62aef83e277d4171df1d9f0803f91738216
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
package com.newvideo.youku.entity;
 
import java.util.List;
 
public class YouKuVideoDetail {
    private String id;
    private String title;
    private String link;
    private String thumbnail;
    private String bigThumbnail;
    private String duration;
    private String category;
    private String state;
    private String created;
    private String published;
    private String description;
    private String player;
    private String public_type;
    private String copyright_type;// 版权所有 original: 原创 reproduced: 转载
    private String tags;
    private List<String> operation_limit;
    private List<String> download_status;
    private int is_panorama;
    private int ischannel;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getLink() {
        return link;
    }
 
    public void setLink(String link) {
        this.link = link;
    }
 
    public String getThumbnail() {
        return thumbnail;
    }
 
    public void setThumbnail(String thumbnail) {
        this.thumbnail = thumbnail;
    }
 
    public String getBigThumbnail() {
        return bigThumbnail;
    }
 
    public void setBigThumbnail(String bigThumbnail) {
        this.bigThumbnail = bigThumbnail;
    }
 
    public String getDuration() {
        return duration;
    }
 
    public void setDuration(String duration) {
        this.duration = duration;
    }
 
    public String getCategory() {
        return category;
    }
 
    public void setCategory(String category) {
        this.category = category;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public String getCreated() {
        return created;
    }
 
    public void setCreated(String created) {
        this.created = created;
    }
 
    public String getPublished() {
        return published;
    }
 
    public void setPublished(String published) {
        this.published = published;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getPlayer() {
        return player;
    }
 
    public void setPlayer(String player) {
        this.player = player;
    }
 
    public String getPublic_type() {
        return public_type;
    }
 
    public void setPublic_type(String public_type) {
        this.public_type = public_type;
    }
 
    public String getCopyright_type() {
        return copyright_type;
    }
 
    public void setCopyright_type(String copyright_type) {
        this.copyright_type = copyright_type;
    }
 
    public String getTags() {
        return tags;
    }
 
    public void setTags(String tags) {
        this.tags = tags;
    }
 
    public List<String> getOperation_limit() {
        return operation_limit;
    }
 
    public void setOperation_limit(List<String> operation_limit) {
        this.operation_limit = operation_limit;
    }
 
    public List<String> getDownload_status() {
        return download_status;
    }
 
    public void setDownload_status(List<String> download_status) {
        this.download_status = download_status;
    }
 
    public int getIs_panorama() {
        return is_panorama;
    }
 
    public void setIs_panorama(int is_panorama) {
        this.is_panorama = is_panorama;
    }
 
    public int getIschannel() {
        return ischannel;
    }
 
    public void setIschannel(int ischannel) {
        this.ischannel = ischannel;
    }
 
}