admin
2021-05-28 5965c01b38a2e83cecd7616daa11185fc2499303
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package com.tejia.lijin.app.entity;
 
import android.os.Parcel;
import android.os.Parcelable;
 
import com.alibaba.fastjson.JSONObject;
import com.google.gson.annotations.Expose;
 
import java.util.List;
 
public class RecommendHot implements Parcelable {
    @Expose
    String picture;
    @Expose
    JumpDetail jumpDetail;
    @Expose
    JSONObject params;
    @Expose
    JumpDetail jumpResult;
    @Expose
    List<HotKey> keyList;
 
    public String getPicture() {
        return picture;
    }
 
    public void setPicture(String picture) {
        this.picture = picture;
    }
 
    public JumpDetail getJumpDetail() {
        return jumpDetail;
    }
 
    public void setJumpDetail(JumpDetail jumpDetail) {
        this.jumpDetail = jumpDetail;
    }
 
    public JumpDetail getJumpResult() {
        return jumpResult;
    }
 
    public void setJumpResult(JumpDetail jumpResult) {
        this.jumpResult = jumpResult;
    }
 
    public List<HotKey> getKeyList() {
        return keyList;
    }
 
    public void setKeyList(List<HotKey> keyList) {
        this.keyList = keyList;
    }
 
    public JSONObject getParams() {
        return params;
    }
 
    public void setParams(JSONObject params) {
        this.params = params;
    }
 
    @Override
    public int describeContents() {
        return 0;
    }
 
    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeString(this.picture);
        dest.writeSerializable(this.jumpDetail);
        dest.writeSerializable(this.params);
        dest.writeSerializable(this.jumpResult);
        dest.writeTypedList(this.keyList);
    }
 
    public RecommendHot() {
    }
 
    protected RecommendHot(Parcel in) {
        this.picture = in.readString();
        this.jumpDetail = (JumpDetail) in.readSerializable();
        this.params = (JSONObject)in.readSerializable();
        this.jumpResult = (JumpDetail) in.readSerializable();
        this.keyList = in.createTypedArrayList(HotKey.CREATOR);
    }
 
    public static final Creator<RecommendHot> CREATOR = new Creator<RecommendHot>() {
        @Override
        public RecommendHot createFromParcel(Parcel source) {
            return new RecommendHot(source);
        }
 
        @Override
        public RecommendHot[] newArray(int size) {
            return new RecommendHot[size];
        }
    };
}