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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
package com.newvideo.youku.entity;
 
import java.util.List;
 
//节目视频
public class ProgramVideo {
    private String id;
    private String stage;
    private String seq;
    private String title;// 名称
    private String link;
    private List<String> streamtypes;
    private String thumbnail;
    private String bigThumbnail;// 新加的
    private String thumbnail_v2;
    private String duration;
    private String category;
    private String view_count;
    private String favorite_count;
    private String up_count;
    private String down_count;
    private String published;
    private String state;// normal的时候正常
    private String rc_title;
    private int is_panorama;
    private String copyright_type;
    private String public_type;
    private String downloadStatus;
    private String operationLimit;
 
    public String getCopyright_type() {
        return copyright_type;
    }
 
    public void setCopyright_type(String copyright_type) {
        this.copyright_type = copyright_type;
    }
 
    public String getPublic_type() {
        return public_type;
    }
 
    public void setPublic_type(String public_type) {
        this.public_type = public_type;
    }
 
    public String getDownloadStatus() {
        return downloadStatus;
    }
 
    public void setDownloadStatus(String downloadStatus) {
        this.downloadStatus = downloadStatus;
    }
 
    public String getOperationLimit() {
        return operationLimit;
    }
 
    public void setOperationLimit(String operationLimit) {
        this.operationLimit = operationLimit;
    }
 
    public ProgramVideo(String id) {
        this.id = id;
    }
 
    public ProgramVideo() {
    }
 
    public String getBigThumbnail() {
        return bigThumbnail;
    }
 
    public void setBigThumbnail(String bigThumbnail) {
        this.bigThumbnail = bigThumbnail;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getStage() {
        return stage;
    }
 
    public void setStage(String stage) {
        this.stage = stage;
    }
 
    public String getSeq() {
        return seq;
    }
 
    public void setSeq(String seq) {
        this.seq = seq;
    }
 
    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 List<String> getStreamtypes() {
        return streamtypes;
    }
 
    public void setStreamtypes(List<String> streamtypes) {
        this.streamtypes = streamtypes;
    }
 
    public String getThumbnail() {
        return thumbnail;
    }
 
    public void setThumbnail(String thumbnail) {
        this.thumbnail = thumbnail;
    }
 
    public String getThumbnail_v2() {
        return thumbnail_v2;
    }
 
    public void setThumbnail_v2(String thumbnail_v2) {
        this.thumbnail_v2 = thumbnail_v2;
    }
 
    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 getView_count() {
        return view_count;
    }
 
    public void setView_count(String view_count) {
        this.view_count = view_count;
    }
 
    public String getFavorite_count() {
        return favorite_count;
    }
 
    public void setFavorite_count(String favorite_count) {
        this.favorite_count = favorite_count;
    }
 
    public String getUp_count() {
        return up_count;
    }
 
    public void setUp_count(String up_count) {
        this.up_count = up_count;
    }
 
    public String getDown_count() {
        return down_count;
    }
 
    public void setDown_count(String down_count) {
        this.down_count = down_count;
    }
 
    public String getPublished() {
        return published;
    }
 
    public void setPublished(String published) {
        this.published = published;
    }
 
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
 
    public String getRc_title() {
        return rc_title;
    }
 
    public void setRc_title(String rc_title) {
        this.rc_title = rc_title;
    }
 
    public int getIs_panorama() {
        return is_panorama;
    }
 
    public void setIs_panorama(int is_panorama) {
        this.is_panorama = is_panorama;
    }
}