update Movie class
This commit is contained in:
@@ -19,8 +19,8 @@ public class Movie {
|
||||
private String actors;
|
||||
private String awards;
|
||||
private String director;
|
||||
private int imdb_id;
|
||||
private int imdb_votes;
|
||||
private String imdb_id;
|
||||
private String imdb_votes;
|
||||
private String metaScore;
|
||||
private String plot;
|
||||
private String rated;
|
||||
@@ -129,19 +129,19 @@ public class Movie {
|
||||
this.director = director;
|
||||
}
|
||||
|
||||
public int getImdb_id() {
|
||||
public String getImdb_id() {
|
||||
return imdb_id;
|
||||
}
|
||||
|
||||
public void setImdb_id(int imdb_id) {
|
||||
public void setImdb_id(String imdb_id) {
|
||||
this.imdb_id = imdb_id;
|
||||
}
|
||||
|
||||
public int getImdb_votes() {
|
||||
public String getImdb_votes() {
|
||||
return imdb_votes;
|
||||
}
|
||||
|
||||
public void setImdb_votes(int imdb_votes) {
|
||||
public void setImdb_votes(String imdb_votes) {
|
||||
this.imdb_votes = imdb_votes;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user