|
@@ -0,0 +1,59 @@
|
|
|
|
|
+package com.happy.Model.Smoke;
|
|
|
|
|
+
|
|
|
|
|
+public class Warm {
|
|
|
|
|
+
|
|
|
|
|
+ public Integer id;
|
|
|
|
|
+ public String publish_time;
|
|
|
|
|
+ public String place;
|
|
|
|
|
+ public String images;
|
|
|
|
|
+ public String handle_status;
|
|
|
|
|
+ public String handle_desc;
|
|
|
|
|
+
|
|
|
|
|
+ public Integer getId() {
|
|
|
|
|
+ return id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setId(Integer id) {
|
|
|
|
|
+ this.id = id;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getPublish_time() {
|
|
|
|
|
+ return publish_time;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setPublish_time(String publish_time) {
|
|
|
|
|
+ this.publish_time = publish_time;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getPlace() {
|
|
|
|
|
+ return place;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setPlace(String place) {
|
|
|
|
|
+ this.place = place;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getImages() {
|
|
|
|
|
+ return images;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setImages(String images) {
|
|
|
|
|
+ this.images = images;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getHandle_status() {
|
|
|
|
|
+ return handle_status;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setHandle_status(String handle_status) {
|
|
|
|
|
+ this.handle_status = handle_status;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public String getHandle_desc() {
|
|
|
|
|
+ return handle_desc;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ public void setHandle_desc(String handle_desc) {
|
|
|
|
|
+ this.handle_desc = handle_desc;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|