wpc
2018-11-27 680fbc9e73da3e11988557cf88fd935efd3e0b1e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
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;
    }
}