RecommendLiveShowBean.java 1.71 KB
package com.cnlive.goldenline.ui.model;

import android.os.Parcel;
import android.os.Parcelable;

import com.cnlive.goldenline.model.response.bean.LiveShowBean;

import java.io.Serializable;
import java.util.List;

/**
 * Description:
 * Created on 2017/3/6
 * Author : 萧
 */
public class RecommendLiveShowBean implements Serializable, Parcelable {

    private String title;

    private List<LiveShowBean> lives;

    public RecommendLiveShowBean() {
    }

    public List<LiveShowBean> getLives() {
        return lives;
    }

    public void setLives(List<LiveShowBean> lives) {
        this.lives = lives;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    @Override
    public String toString() {
        return "RecommendLiveShowBean{" +
                "title='" + title + '\'' +
                ", lives=" + lives +
                '}';
    }

    @Override
    public int describeContents() {
        return 0;
    }

    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeString(this.title);
        dest.writeTypedList(this.lives);
    }

    protected RecommendLiveShowBean(Parcel in) {
        this.title = in.readString();
        this.lives = in.createTypedArrayList(LiveShowBean.CREATOR);
    }

    public static final Creator<RecommendLiveShowBean> CREATOR = new Creator<RecommendLiveShowBean>() {
        @Override
        public RecommendLiveShowBean createFromParcel(Parcel source) {
            return new RecommendLiveShowBean(source);
        }

        @Override
        public RecommendLiveShowBean[] newArray(int size) {
            return new RecommendLiveShowBean[size];
        }
    };
}