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
package com.tejia.lijin.app.entity;
 
import android.os.Parcel;
import android.os.Parcelable;
 
import com.google.gson.annotations.Expose;
 
/**
 * 金币获取
 */
public class PushEventData implements Parcelable {
    @Expose
    private String shopUrl;
    @Expose
    private String goodsType;
    @Expose
    private String goodsId;
    @Expose
    private String id;
 
    public String getShopUrl() {
        return shopUrl;
    }
 
    public void setShopUrl(String shopUrl) {
        this.shopUrl = shopUrl;
    }
 
    public String getGoodsType() {
        return goodsType;
    }
 
    public void setGoodsType(String goodsType) {
        this.goodsType = goodsType;
    }
 
    public String getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(String goodsId) {
        this.goodsId = goodsId;
    }
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    @Override
    public int describeContents() {
        return 0;
    }
 
    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeString(this.shopUrl);
        dest.writeString(this.goodsType);
        dest.writeString(this.goodsId);
        dest.writeString(this.id);
    }
 
    public PushEventData() {
    }
 
    protected PushEventData(Parcel in) {
        this.shopUrl = in.readString();
        this.goodsType = in.readString();
        this.goodsId = in.readString();
        this.id = in.readString();
    }
 
    public static final Parcelable.Creator<PushEventData> CREATOR = new Parcelable.Creator<PushEventData>() {
        @Override
        public PushEventData createFromParcel(Parcel source) {
            return new PushEventData(source);
        }
 
        @Override
        public PushEventData[] newArray(int size) {
            return new PushEventData[size];
        }
    };
}