Browse Source

no message

master
lh 8 years ago
parent
commit
1bae6701ff
1 changed files with 11 additions and 0 deletions
  1. +11
    -0
      app/src/main/java/com/qhclh/ytzh/bean/NewsBean.java

+ 11
- 0
app/src/main/java/com/qhclh/ytzh/bean/NewsBean.java View File

@ -12,6 +12,7 @@ public class NewsBean extends DataSupport{
private String title;
private String content;
private String time;
private int type;
// public NewsBean(int id, String url, String title, String content, String time) {
// this.id = id;
@ -21,6 +22,15 @@ public class NewsBean extends DataSupport{
// this.time = time;
// }
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public int getId() {
return id;
}
@ -69,6 +79,7 @@ public class NewsBean extends DataSupport{
", title='" + title + '\'' +
", content='" + content + '\'' +
", time='" + time + '\'' +
", type=" + type +
'}';
}
}

Loading…
Cancel
Save