切换Fresco框架

This commit is contained in:
khy
2016-10-21 16:09:06 +08:00
parent e082ad97ac
commit 6eaef8388b
92 changed files with 641 additions and 670 deletions

View File

@ -41,6 +41,17 @@ public class GameEntity {
private String link;
@SerializedName("concern_article_exists")
private boolean exists = true;
public boolean isExists() {
return exists;
}
public void setExists(boolean exists) {
this.exists = exists;
}
public String getLink() {
return link;
}