package com.weikou.beibeivideo.entity.vo;
|
|
import com.weikou.beibeivideo.entity.VideoInfo;
|
|
public class WatchHistoryVO {
|
private String id;
|
private Long createTime;
|
private VideoInfo video;
|
private int position;
|
//选中
|
private boolean selected;
|
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public VideoInfo getVideo() {
|
return video;
|
}
|
|
public void setVideo(VideoInfo video) {
|
this.video = video;
|
}
|
|
public Long getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Long createTime) {
|
this.createTime = createTime;
|
}
|
|
public int getPosition() {
|
return position;
|
}
|
|
public void setPosition(int position) {
|
this.position = position;
|
}
|
|
public boolean isSelected() {
|
return selected;
|
}
|
|
public void setSelected(boolean selected) {
|
this.selected = selected;
|
}
|
}
|