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];
|
}
|
};
|
}
|