package com.yeshi.buwan.domain;
|
|
import com.google.gson.annotations.Expose;
|
import com.yeshi.buwan.domain.user.LoginUser;
|
|
/**
|
* 关注视频
|
*
|
* @author Administrator
|
*
|
*/
|
public class Attention {
|
@Expose
|
private long id;
|
@Expose
|
private VideoInfo videoInfo;
|
private LoginUser loginUser;
|
private String createtime;
|
private boolean show;
|
|
public VideoInfo getVideoInfo() {
|
return videoInfo;
|
}
|
|
public void setVideoInfo(VideoInfo videoInfo) {
|
this.videoInfo = videoInfo;
|
}
|
|
public long getId() {
|
return id;
|
}
|
|
public void setId(long id) {
|
this.id = id;
|
}
|
|
public LoginUser getLoginUser() {
|
return loginUser;
|
}
|
|
public void setLoginUser(LoginUser loginUser) {
|
this.loginUser = loginUser;
|
}
|
|
public String getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(String createtime) {
|
this.createtime = createtime;
|
}
|
|
public boolean isShow() {
|
return show;
|
}
|
|
public void setShow(boolean show) {
|
this.show = show;
|
}
|
|
}
|