PlayItemInfo.java 2.08 KB
package com.cnlive.goldenline.model;

import android.support.annotation.NonNull;

import java.io.Serializable;

/**
 * Created by Administrator on 2016/4/28.
 */
public class PlayItemInfo implements Serializable {

    /**
     * tags : 全片  内地 演唱会
     * title : 失去之后才想起珍惜
     * contentid : 04270015
     * actors :
     * uuid : 05e95e35fb994145982b41d6a99d8e64
     * director :
     */
    private String tags;
    private String title;
    private String contentid;
    private String actors;
    private String uuid;
    private String director;

    private String commentNum;
    private String uv;//观看人数

    public String getCommentNum() {
        return commentNum;
    }

    public void setCommentNum(String commentNum) {
        this.commentNum = commentNum;
    }

    public String getUv() {
        return uv;
    }

    public void setUv(String uv) {
        this.uv = uv;
    }

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

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

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

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

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

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

    public String getTags() {
        return tags;
    }

    public String getTitle() {
        return title;
    }

    public String getContentid() {
        return contentid;
    }

    public String getActors() {
        return actors;
    }

    public String getUuid() {
        return uuid;
    }

    public String getDirector() {
        return director;
    }

    @NonNull
    @Override
    public String toString() {
        return "PlayItemInfo{"+
                "  tags:"+tags+
                "  title:"+title+
                "  contentid:"+contentid+
                "  actors:"+actors+
                "  uuid:"+uuid+
                "  director:"+director+
                "}";
    }
}