|
|
@@ -0,0 +1,123 @@
|
|
|
+package com.happy.Model.app;
|
|
|
+
|
|
|
+public class News {
|
|
|
+
|
|
|
+ public int id;
|
|
|
+ public String media_id;
|
|
|
+ public String title;
|
|
|
+ public String author;
|
|
|
+ public String digest;
|
|
|
+ public String content;
|
|
|
+ public String content_source_url;
|
|
|
+ public String url;
|
|
|
+ public String update_time;
|
|
|
+ public String first_img;
|
|
|
+ public Integer state;
|
|
|
+ public Integer is_top;
|
|
|
+ public String top_time;
|
|
|
+
|
|
|
+ public int getId() {
|
|
|
+ return id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setId(int id) {
|
|
|
+ this.id = id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getMedia_id() {
|
|
|
+ return media_id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setMedia_id(String media_id) {
|
|
|
+ this.media_id = media_id;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTitle() {
|
|
|
+ return title;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTitle(String title) {
|
|
|
+ this.title = title;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getAuthor() {
|
|
|
+ return author;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setAuthor(String author) {
|
|
|
+ this.author = author;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getDigest() {
|
|
|
+ return digest;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setDigest(String digest) {
|
|
|
+ this.digest = digest;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getContent() {
|
|
|
+ return content;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContent(String content) {
|
|
|
+ this.content = content;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getContent_source_url() {
|
|
|
+ return content_source_url;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setContent_source_url(String content_source_url) {
|
|
|
+ this.content_source_url = content_source_url;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUrl() {
|
|
|
+ return url;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUrl(String url) {
|
|
|
+ this.url = url;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getUpdate_time() {
|
|
|
+ return update_time;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setUpdate_time(String update_time) {
|
|
|
+ this.update_time = update_time;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getFirst_img() {
|
|
|
+ return first_img;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setFirst_img(String first_img) {
|
|
|
+ this.first_img = first_img;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getState() {
|
|
|
+ return state;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setState(Integer state) {
|
|
|
+ this.state = state;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getIs_top() {
|
|
|
+ return is_top;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIs_top(Integer is_top) {
|
|
|
+ this.is_top = is_top;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTop_time() {
|
|
|
+ return top_time;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTop_time(String top_time) {
|
|
|
+ this.top_time = top_time;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|