package cn.demo.videolist;
import java.io.Serializable;
/**
* Author wangchenchen
* Description video model
*/
public class VideoItemData implements Serializable {
int type;
String cover;
int playCount;
String title;
String mp4_url;
String ptime;
String vid;
int length;
String videosource;
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public String getCover() {
return cover;
}
public void setCover(String cover) {
this.cover = cover;
}
public int getPlayCount() {
return playCount;
}
public void setPlayCount(int playCount) {
this.playCount = playCount;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getMp4_url() {
return mp4_url;
}
public void setMp4_url(String mp4_url) {
this.mp4_url = mp4_url;
}
public String getPtime() {
return ptime;
}
public void setPtime(String ptime) {
this.ptime = ptime;
}
public String getVid() {
return vid;
}
public void setVid(String vid) {
this.vid = vid;
}
public int getLength() {
return length;
}
public void setLength(int length) {
this.length = length;
}
public String getVideosource() {
return videosource;
}
public void setVideosource(String videosource) {
this.videosource = videosource;
}
boolean isPlaying;
public boolean isPlaying() {
return isPlaying;
}
public void setPlaying(boolean playing) {
isPlaying = playing;
}
int currentPositon;
public int getCurrentPositon() {
return currentPositon;
}
public void setCurrentPositon(int currentPositon) {
this.currentPositon = currentPositon;
}
}