Browse Source

上传文件

陈士柏 2 years ago
parent
commit
25152bbae7

+ 16 - 0
mhotel/src/com/happy/common/model/airticle/Content.java

@@ -0,0 +1,16 @@
+package com.happy.common.model.airticle;
+
+import java.util.List;
+
+public class Content {
+
+    public List<News_content> news_item;
+
+    public List<News_content> getNews_item() {
+        return news_item;
+    }
+
+    public void setNews_item(List<News_content> news_item) {
+        this.news_item = news_item;
+    }
+}

+ 34 - 0
mhotel/src/com/happy/common/model/airticle/Item.java

@@ -0,0 +1,34 @@
+package com.happy.common.model.airticle;
+
+import java.util.List;
+
+public class Item {
+
+    public String total_count;
+    public String item_count;
+    public List<Item_content> item;
+
+    public String getTotal_count() {
+        return total_count;
+    }
+
+    public void setTotal_count(String total_count) {
+        this.total_count = total_count;
+    }
+
+    public String getItem_count() {
+        return item_count;
+    }
+
+    public void setItem_count(String item_count) {
+        this.item_count = item_count;
+    }
+
+    public List<Item_content> getItem() {
+        return item;
+    }
+
+    public void setItem(List<Item_content> item) {
+        this.item = item;
+    }
+}

+ 32 - 0
mhotel/src/com/happy/common/model/airticle/Item_content.java

@@ -0,0 +1,32 @@
+package com.happy.common.model.airticle;
+
+public class Item_content {
+
+    public String media_id;
+    public String update_time;
+    public Content content;
+
+    public String getMedia_id() {
+        return media_id;
+    }
+
+    public void setMedia_id(String media_id) {
+        this.media_id = media_id;
+    }
+
+    public String getUpdate_time() {
+        return update_time;
+    }
+
+    public void setUpdate_time(String update_time) {
+        this.update_time = update_time;
+    }
+
+    public Content getContent() {
+        return content;
+    }
+
+    public void setContent(Content content) {
+        this.content = content;
+    }
+}

+ 14 - 0
mhotel/src/com/happy/common/model/airticle/New_count.java

@@ -0,0 +1,14 @@
+package com.happy.common.model.airticle;
+
+public class New_count {
+
+    public Integer total_count;
+
+    public Integer getTotal_count() {
+        return total_count;
+    }
+
+    public void setTotal_count(Integer total_count) {
+        this.total_count = total_count;
+    }
+}

+ 95 - 0
mhotel/src/com/happy/common/model/airticle/News_content.java

@@ -0,0 +1,95 @@
+package com.happy.common.model.airticle;
+
+public class News_content {
+
+    public String title;
+    public String author;
+    public String digest;
+    public String content;
+    public String content_source_url;
+    public String thumb_media_id;
+    public String show_cover_pic;
+    public String need_open_comment;
+    public String only_fans_can_comment;
+    public String url;
+
+    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 getThumb_media_id() {
+        return thumb_media_id;
+    }
+
+    public void setThumb_media_id(String thumb_media_id) {
+        this.thumb_media_id = thumb_media_id;
+    }
+
+    public String getShow_cover_pic() {
+        return show_cover_pic;
+    }
+
+    public void setShow_cover_pic(String show_cover_pic) {
+        this.show_cover_pic = show_cover_pic;
+    }
+
+    public String getNeed_open_comment() {
+        return need_open_comment;
+    }
+
+    public void setNeed_open_comment(String need_open_comment) {
+        this.need_open_comment = need_open_comment;
+    }
+
+    public String getOnly_fans_can_comment() {
+        return only_fans_can_comment;
+    }
+
+    public void setOnly_fans_can_comment(String only_fans_can_comment) {
+        this.only_fans_can_comment = only_fans_can_comment;
+    }
+
+    public String getUrl() {
+        return url;
+    }
+
+    public void setUrl(String url) {
+        this.url = url;
+    }
+}