forked from j62/ctbrec
Change data type of all Integer fields to String
This commit is contained in:
parent
0c7650f94f
commit
a30d4ed463
|
@ -6,14 +6,14 @@ import java.util.Map;
|
|||
public class Share {
|
||||
|
||||
private String albums;
|
||||
private Integer follows;
|
||||
private Integer tmAlbum;
|
||||
private Integer things;
|
||||
private Integer clubs;
|
||||
private Integer collections;
|
||||
private Integer stores;
|
||||
private Integer goals;
|
||||
private Integer polls;
|
||||
private String follows;
|
||||
private String tmAlbum;
|
||||
private String things;
|
||||
private String clubs;
|
||||
private String collections;
|
||||
private String stores;
|
||||
private String goals;
|
||||
private String polls;
|
||||
private Map<String, Object> additionalProperties = new HashMap<>();
|
||||
|
||||
public String getAlbums() {
|
||||
|
@ -24,67 +24,67 @@ public class Share {
|
|||
this.albums = albums;
|
||||
}
|
||||
|
||||
public Integer getFollows() {
|
||||
public String getFollows() {
|
||||
return follows;
|
||||
}
|
||||
|
||||
public void setFollows(Integer follows) {
|
||||
public void setFollows(String follows) {
|
||||
this.follows = follows;
|
||||
}
|
||||
|
||||
public Integer getTmAlbum() {
|
||||
public String getTmAlbum() {
|
||||
return tmAlbum;
|
||||
}
|
||||
|
||||
public void setTmAlbum(Integer tmAlbum) {
|
||||
public void setTmAlbum(String tmAlbum) {
|
||||
this.tmAlbum = tmAlbum;
|
||||
}
|
||||
|
||||
public Integer getThings() {
|
||||
public String getThings() {
|
||||
return things;
|
||||
}
|
||||
|
||||
public void setThings(Integer things) {
|
||||
public void setThings(String things) {
|
||||
this.things = things;
|
||||
}
|
||||
|
||||
public Integer getClubs() {
|
||||
public String getClubs() {
|
||||
return clubs;
|
||||
}
|
||||
|
||||
public void setClubs(Integer clubs) {
|
||||
public void setClubs(String clubs) {
|
||||
this.clubs = clubs;
|
||||
}
|
||||
|
||||
public Integer getCollections() {
|
||||
public String getCollections() {
|
||||
return collections;
|
||||
}
|
||||
|
||||
public void setCollections(Integer collections) {
|
||||
public void setCollections(String collections) {
|
||||
this.collections = collections;
|
||||
}
|
||||
|
||||
public Integer getStores() {
|
||||
public String getStores() {
|
||||
return stores;
|
||||
}
|
||||
|
||||
public void setStores(Integer stores) {
|
||||
public void setStores(String stores) {
|
||||
this.stores = stores;
|
||||
}
|
||||
|
||||
public Integer getGoals() {
|
||||
public String getGoals() {
|
||||
return goals;
|
||||
}
|
||||
|
||||
public void setGoals(Integer goals) {
|
||||
public void setGoals(String goals) {
|
||||
this.goals = goals;
|
||||
}
|
||||
|
||||
public Integer getPolls() {
|
||||
public String getPolls() {
|
||||
return polls;
|
||||
}
|
||||
|
||||
public void setPolls(Integer polls) {
|
||||
public void setPolls(String polls) {
|
||||
this.polls = polls;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue