MovieMessage.java
7.13 KB
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
package com.gimi.common.cinema.model;
import com.google.gson.annotations.Expose;
import java.util.Arrays;
/**
* Created by pc on 2014/12/24.
*/
public class MovieMessage {
@Expose
private Rating rating;
@Expose
private int reviews_count;
@Expose
private int wish_count;
@Expose
private int collect_count;
@Expose
private String douban_site;
@Expose
private String year;
@Expose
private MovieImages images;
@Expose
private String alt;
@Expose
private String id;
@Expose
private String mobile_url;
@Expose
private String title;
@Expose
private String do_count;// not confirm type
@Expose
private String seasons_count;// not confirm type
@Expose
private String schedule_url;// not confirm type
@Expose
private String episodes_count;// not confirm type
@Expose
private String[] genres;//分类,关键词
@Expose
private String[] countries;
@Expose
private MovieCast[] casts;//演员列表
@Expose
private String current_season;//
@Expose
private String original_title;//原名
@Expose
private String summary;//电影简介:互相猜忌,却无意间发现了彼此间的联系。但是,大家怀疑的嫌疑人却纷纷死去,谜团笼罩在旅馆狭小的空间里,这样的凶杀案件却有着人们猜不到的真相……©豆瓣",
@Expose
private String subtype;// 电影 音乐 图书 (英文)……
@Expose
private MovieCast[] directors;
@Expose
private int comments_count;
@Expose
private int ratings_count;
@Expose
private String []aka;//应该是别名
public Rating getRating() {
return rating;
}
public void setRating(Rating rating) {
this.rating = rating;
}
public int getReviews_count() {
return reviews_count;
}
public void setReviews_count(int reviews_count) {
this.reviews_count = reviews_count;
}
public int getWish_count() {
return wish_count;
}
public void setWish_count(int wish_count) {
this.wish_count = wish_count;
}
public int getCollect_count() {
return collect_count;
}
public void setCollect_count(int collect_count) {
this.collect_count = collect_count;
}
public String getDouban_site() {
return douban_site;
}
public void setDouban_site(String douban_site) {
this.douban_site = douban_site;
}
public String getYear() {
return year;
}
public void setYear(String year) {
this.year = year;
}
public MovieImages getImages() {
return images;
}
public void setImages(MovieImages images) {
this.images = images;
}
public String getAlt() {
return alt;
}
public void setAlt(String alt) {
this.alt = alt;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getMobile_url() {
return mobile_url;
}
public void setMobile_url(String mobile_url) {
this.mobile_url = mobile_url;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDo_count() {
return do_count;
}
public void setDo_count(String do_count) {
this.do_count = do_count;
}
public String getSeasons_count() {
return seasons_count;
}
public void setSeasons_count(String seasons_count) {
this.seasons_count = seasons_count;
}
public String getSchedule_url() {
return schedule_url;
}
public void setSchedule_url(String schedule_url) {
this.schedule_url = schedule_url;
}
public String getEpisodes_count() {
return episodes_count;
}
public void setEpisodes_count(String episodes_count) {
this.episodes_count = episodes_count;
}
public String[] getGenres() {
return genres;
}
public void setGenres(String[] genres) {
this.genres = genres;
}
public String[] getCountries() {
return countries;
}
public void setCountries(String[] countries) {
this.countries = countries;
}
public MovieCast[] getCasts() {
return casts;
}
public void setCasts(MovieCast[] casts) {
this.casts = casts;
}
public String getCurrent_season() {
return current_season;
}
public void setCurrent_season(String current_season) {
this.current_season = current_season;
}
public String getOriginal_title() {
return original_title;
}
public void setOriginal_title(String original_title) {
this.original_title = original_title;
}
public String getSummary() {
return summary;
}
public void setSummary(String summary) {
this.summary = summary;
}
public String getSubtype() {
return subtype;
}
public void setSubtype(String subtype) {
this.subtype = subtype;
}
public MovieCast[] getDirectors() {
return directors;
}
public void setDirectors(MovieCast[] directors) {
this.directors = directors;
}
public int getComments_count() {
return comments_count;
}
public void setComments_count(int comments_count) {
this.comments_count = comments_count;
}
public int getRatings_count() {
return ratings_count;
}
public void setRatings_count(int ratings_count) {
this.ratings_count = ratings_count;
}
public String[] getAka() {
return aka;
}
public void setAka(String[] aka) {
this.aka = aka;
}
@Override
public String toString() {
return "MM{" +
"rating=" + rating +
", reviews_count=" + reviews_count +
", wish_count=" + wish_count +
", collect_count=" + collect_count +
", douban_site='" + douban_site + '\'' +
", year='" + year + '\'' +
", images=" + images +
", alt='" + alt + '\'' +
", id='" + id + '\'' +
", mobile_url='" + mobile_url + '\'' +
", title='" + title + '\'' +
", do_count='" + do_count + '\'' +
", seasons_count='" + seasons_count + '\'' +
", schedule_url='" + schedule_url + '\'' +
", episodes_count='" + episodes_count + '\'' +
", genres=" + Arrays.toString(genres) +
", countries=" + Arrays.toString(countries) +
", casts=" + Arrays.toString(casts) +
", current_season='" + current_season + '\'' +
", original_title='" + original_title + '\'' +
", summary='" + summary + '\'' +
", subtype='" + subtype + '\'' +
", directors=" + Arrays.toString(directors) +
", comments_count=" + comments_count +
", ratings_count=" + ratings_count +
", aka=" + Arrays.toString(aka) +
'}';
}
}