package com.haicaojie.android.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import org.json.JSONObject;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by weikou2015 on 2017/2/23.
|
*/
|
|
public class SpecialOffer implements Serializable {
|
@Expose
|
private String id;
|
@Expose
|
private String name;
|
@Expose
|
private String picture;
|
@Expose
|
private String tag;
|
@Expose
|
private String orderby;
|
@Expose
|
private JumpDetail jumpDetail;
|
@Expose
|
private JSONObject params;
|
@Expose
|
private String show;
|
@Expose
|
private String createtime;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getPicture() {
|
return picture;
|
}
|
|
public void setPicture(String picture) {
|
this.picture = picture;
|
}
|
|
public String getTag() {
|
return tag;
|
}
|
|
public void setTag(String tag) {
|
this.tag = tag;
|
}
|
|
public String getOrderby() {
|
return orderby;
|
}
|
|
public void setOrderby(String orderby) {
|
this.orderby = orderby;
|
}
|
|
public JumpDetail getJumpDetail() {
|
return jumpDetail;
|
}
|
|
public void setJumpDetail(JumpDetail jumpDetail) {
|
this.jumpDetail = jumpDetail;
|
}
|
|
public JSONObject getParams() {
|
return params;
|
}
|
|
public void setParams(JSONObject params) {
|
this.params = params;
|
}
|
|
public String getShow() {
|
return show;
|
}
|
|
public void setShow(String show) {
|
this.show = show;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
}
|