package com.mugua.mgvideo.entity;
|
|
import java.io.Serializable;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.base.entity.video.VideoInfo;
|
|
public class HomeVideo implements Serializable {
|
|
public HomeVideo(){
|
|
}
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
@Expose
|
private String id;
|
private HomeType type;
|
@Expose
|
private VideoInfo video;
|
@Expose
|
private String tag;//简介
|
@Expose
|
private String picture;
|
|
@Expose
|
//是否为大图
|
private boolean bigPicture;
|
|
public boolean isBigPicture() {
|
return bigPicture;
|
}
|
|
public void setBigPicture(boolean bigPicture) {
|
this.bigPicture = bigPicture;
|
}
|
|
|
// private IMvNativeAd ad;// 广告
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getTag() {
|
return tag;
|
}
|
|
public void setTag(String tag) {
|
this.tag = tag;
|
}
|
|
public HomeType getType() {
|
return type;
|
}
|
|
public void setType(HomeType type) {
|
this.type = type;
|
}
|
|
public VideoInfo getVideo() {
|
return video;
|
}
|
|
public void setVideo(VideoInfo video) {
|
this.video = video;
|
}
|
|
public String getPicture() {
|
return picture;
|
}
|
|
public void setPicture(String picture) {
|
this.picture = picture;
|
}
|
}
|