package com.haicaojie.android.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
import org.json.JSONObject;
|
|
import java.io.Serializable;
|
|
/**
|
* Created by weikou2015 on 2017/3/7.
|
*/
|
|
public class HomeBanner implements Serializable {
|
@Expose
|
private String id;
|
@Expose
|
private JumpDetail jumpDetail;
|
@Expose
|
private JSONObject params;
|
@Expose
|
private String picture;
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
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 getPicture() {
|
return picture;
|
}
|
|
public void setPicture(String picture) {
|
this.picture = picture;
|
}
|
}
|