Program.java 2.53 KB
package com.cnlive.goldenline.model;

import android.support.annotation.NonNull;

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

/**
 * Created by Dean.Zhang on 2016-08-03.
 */
public class Program implements Serializable {

    private String contentid;
    private String title;
    private String uuid;
    private String actors;
    private String director;
    private String tags;
    private String jurisdiction;
    private String vd;
    private List<ProgramItem> getway;
    private List<ProgramItem> download;

    @NonNull
    @Override
    public String toString() {
        return "Program{" +
                "actors='" + actors + '\'' +
                ", contentid='" + contentid + '\'' +
                ", title='" + title + '\'' +
                ", uuid='" + uuid + '\'' +
                ", director='" + director + '\'' +
                ", tags='" + tags + '\'' +
                ", jurisdiction='" + jurisdiction + '\'' +
                ", vd='" + vd + '\'' +
                ", getway=" + getway +
                ", download=" + download +
                '}';
    }

    public String getUuid() {
        return uuid;
    }

    public void setUuid(String uuid) {
        this.uuid = uuid;
    }

    public String getActors() {
        return actors;
    }

    public void setActors(String actors) {
        this.actors = actors;
    }

    public String getContentid() {
        return contentid;
    }

    public void setContentid(String contentid) {
        this.contentid = contentid;
    }

    public String getDirector() {
        return director;
    }

    public void setDirector(String director) {
        this.director = director;
    }

    public List<ProgramItem> getDownload() {
        return download;
    }

    public void setDownload(List<ProgramItem> download) {
        this.download = download;
    }

    public List<ProgramItem> getGetway() {
        return getway;
    }

    public void setGetway(List<ProgramItem> getway) {
        this.getway = getway;
    }

    public String getTags() {
        return tags;
    }

    public void setTags(String tags) {
        this.tags = tags;
    }

    public String getTitle() {
        return title;
    }

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

    public String getJurisdiction() {
        return jurisdiction;
    }

    public void setJurisdiction(String jurisdiction) {
        this.jurisdiction = jurisdiction;
    }

    public String getVd() {
        return vd;
    }

    public void setVd(String vd) {
        this.vd = vd;
    }
}