forked from j62/ctbrec
1
0
Fork 0

Change data type of all Integer fields to String

This commit is contained in:
0xboobface 2020-04-18 19:51:40 +02:00
parent 0c7650f94f
commit a30d4ed463
1 changed files with 24 additions and 24 deletions

View File

@ -6,14 +6,14 @@ import java.util.Map;
public class Share { public class Share {
private String albums; private String albums;
private Integer follows; private String follows;
private Integer tmAlbum; private String tmAlbum;
private Integer things; private String things;
private Integer clubs; private String clubs;
private Integer collections; private String collections;
private Integer stores; private String stores;
private Integer goals; private String goals;
private Integer polls; private String polls;
private Map<String, Object> additionalProperties = new HashMap<>(); private Map<String, Object> additionalProperties = new HashMap<>();
public String getAlbums() { public String getAlbums() {
@ -24,67 +24,67 @@ public class Share {
this.albums = albums; this.albums = albums;
} }
public Integer getFollows() { public String getFollows() {
return follows; return follows;
} }
public void setFollows(Integer follows) { public void setFollows(String follows) {
this.follows = follows; this.follows = follows;
} }
public Integer getTmAlbum() { public String getTmAlbum() {
return tmAlbum; return tmAlbum;
} }
public void setTmAlbum(Integer tmAlbum) { public void setTmAlbum(String tmAlbum) {
this.tmAlbum = tmAlbum; this.tmAlbum = tmAlbum;
} }
public Integer getThings() { public String getThings() {
return things; return things;
} }
public void setThings(Integer things) { public void setThings(String things) {
this.things = things; this.things = things;
} }
public Integer getClubs() { public String getClubs() {
return clubs; return clubs;
} }
public void setClubs(Integer clubs) { public void setClubs(String clubs) {
this.clubs = clubs; this.clubs = clubs;
} }
public Integer getCollections() { public String getCollections() {
return collections; return collections;
} }
public void setCollections(Integer collections) { public void setCollections(String collections) {
this.collections = collections; this.collections = collections;
} }
public Integer getStores() { public String getStores() {
return stores; return stores;
} }
public void setStores(Integer stores) { public void setStores(String stores) {
this.stores = stores; this.stores = stores;
} }
public Integer getGoals() { public String getGoals() {
return goals; return goals;
} }
public void setGoals(Integer goals) { public void setGoals(String goals) {
this.goals = goals; this.goals = goals;
} }
public Integer getPolls() { public String getPolls() {
return polls; return polls;
} }
public void setPolls(Integer polls) { public void setPolls(String polls) {
this.polls = polls; this.polls = polls;
} }