VideoInfo.java 4.26 KB
package com.hjx.personalcenter.model;

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

/**
 * Created by h on 2017/9/15.
 */

public class VideoInfo implements Serializable {

    /**
     * status : 1
     * pageSize : 0
     * data : [{"videoCover":"http://hjxprodbucket.oss.aliyuncs.com/static/upload/online_api/mobile_portrait/2017-09-06/1e03835a-48fd-425e-8ab4-662968ee5377.png","videoUrl":"rtmp://vplay.xuexiao100.com/oflaDemo/M16-FLV/黄冈视频/小学数学/5年级上 北京版(北京出版社)(2014版)/北京数学5上_05 方程一.flv","videoName":"北京数学5上_05 方程一"},{"videoCover":"http://hjxprodbucket.oss.aliyuncs.com/static/upload/online_api/mobile_portrait/2017-09-06/1e03835a-48fd-425e-8ab4-662968ee5377.png","videoUrl":"rtmp://vplay.xuexiao100.com/oflaDemo/M16-FLV/黄冈视频/小学数学/5年级上 北京版(北京出版社)(2014版)/北京数学5上_05 方程一.flv","videoName":"北京数学5上_05 方程一"},{"videoCover":"http://hjxprodbucket.oss.aliyuncs.com/static/upload/online_api/mobile_portrait/2017-09-06/1e03835a-48fd-425e-8ab4-662968ee5377.png","videoUrl":"rtmp://vplay.xuexiao100.com/oflaDemo/M16-FLV/黄冈视频/小学数学/5年级上 北京版(北京出版社)(2014版)/北京数学5上_05 方程一.flv","videoName":"北京数学5上_05 方程一"},{"videoCover":"http://hjxprodbucket.oss.aliyuncs.com/static/upload/online_api/mobile_portrait/2017-09-06/1e03835a-48fd-425e-8ab4-662968ee5377.png","videoUrl":"rtmp://vplay.xuexiao100.com/oflaDemo/M16-FLV/黄冈视频/小学数学/5年级上 北京版(北京出版社)(2014版)/北京数学5上_05 方程一.flv","videoName":"北京数学5上_05 方程一"},{"videoCover":"http://hjxprodbucket.oss.aliyuncs.com/static/upload/online_api/mobile_portrait/2017-09-06/1e03835a-48fd-425e-8ab4-662968ee5377.png","videoUrl":"rtmp://vplay.xuexiao100.com/oflaDemo/M16-FLV/黄冈视频/小学数学/5年级上 北京版(北京出版社)(2014版)/北京数学5上_05 方程一.flv","videoName":"北京数学5上_05 方程一"},{"videoCover":"http://hjxprodbucket.oss.aliyuncs.com/static/upload/online_api/mobile_portrait/2017-09-06/1e03835a-48fd-425e-8ab4-662968ee5377.png","videoUrl":"rtmp://vplay.xuexiao100.com/oflaDemo/M16-FLV/黄冈视频/小学数学/5年级上 北京版(北京出版社)(2014版)/北京数学5上_05 方程一.flv","videoName":"北京数学5上_05 方程一"}]
     * msg : success
     * pageNum : 0
     */

    private int status;
    private int pageSize;
    private String msg;
    private int pageNum;
    private List<DataBean> data;

    public void setStatus(int status) {
        this.status = status;
    }

    public void setPageSize(int pageSize) {
        this.pageSize = pageSize;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }

    public void setPageNum(int pageNum) {
        this.pageNum = pageNum;
    }

    public void setData(List<DataBean> data) {
        this.data = data;
    }

    public int getStatus() {
        return status;
    }

    public int getPageSize() {
        return pageSize;
    }

    public String getMsg() {
        return msg;
    }

    public int getPageNum() {
        return pageNum;
    }

    public List<DataBean> getData() {
        return data;
    }

    public static class DataBean {
        /**
         * videoCover : http://hjxprodbucket.oss.aliyuncs.com/static/upload/online_api/mobile_portrait/2017-09-06/1e03835a-48fd-425e-8ab4-662968ee5377.png
         * videoUrl : rtmp://vplay.xuexiao100.com/oflaDemo/M16-FLV/黄冈视频/小学数学/5年级上 北京版(北京出版社)(2014版)/北京数学5上_05 方程一.flv
         * videoName : 北京数学5上_05 方程一
         */

        private String videoCover;
        private String videoUrl;
        private String videoName;

        public void setVideoCover(String videoCover) {
            this.videoCover = videoCover;
        }

        public void setVideoUrl(String videoUrl) {
            this.videoUrl = videoUrl;
        }

        public void setVideoName(String videoName) {
            this.videoName = videoName;
        }

        public String getVideoCover() {
            return videoCover;
        }

        public String getVideoUrl() {
            return videoUrl;
        }

        public String getVideoName() {
            return videoName;
        }
    }
}